Compare commits
2 commits
bb18c9155b
...
4810a7ee97
| Author | SHA1 | Date | |
|---|---|---|---|
| 4810a7ee97 | |||
| ee42cb21dd |
2 changed files with 9 additions and 4 deletions
|
|
@ -118,11 +118,15 @@
|
||||||
});
|
});
|
||||||
Ox.$document.on({
|
Ox.$document.on({
|
||||||
dragenter: function(event) {
|
dragenter: function(event) {
|
||||||
|
if (Ox.contains(event.originalEvent.dataTransfer.types, 'Files')) {
|
||||||
event.originalEvent.preventDefault();
|
event.originalEvent.preventDefault();
|
||||||
event.originalEvent.stopPropagation();
|
event.originalEvent.stopPropagation();
|
||||||
if (!$('#importScreen').length && !$('#closedScreen').length) {
|
if (!$('#importScreen').length && !$('#closedScreen').length) {
|
||||||
oml.ui.importScreen().appendTo(Ox.$body);
|
oml.ui.importScreen().appendTo(Ox.$body);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
console.log(event.originalEvent.dataTransfer);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
dragover: function(event) {
|
dragover: function(event) {
|
||||||
event.originalEvent.preventDefault();
|
event.originalEvent.preventDefault();
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
"URL.js",
|
"URL.js",
|
||||||
"allItems.js",
|
"allItems.js",
|
||||||
"annotation.js",
|
"annotation.js",
|
||||||
|
"annotationFolder.js",
|
||||||
"annotationPanel.js",
|
"annotationPanel.js",
|
||||||
"appDialog.js",
|
"appDialog.js",
|
||||||
"appPanel.js",
|
"appPanel.js",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue