only allow dropping of files
This commit is contained in:
parent
ee42cb21dd
commit
4810a7ee97
1 changed files with 8 additions and 4 deletions
|
@ -118,11 +118,15 @@
|
|||
});
|
||||
Ox.$document.on({
|
||||
dragenter: function(event) {
|
||||
if (Ox.contains(event.originalEvent.dataTransfer.types, 'Files')) {
|
||||
event.originalEvent.preventDefault();
|
||||
event.originalEvent.stopPropagation();
|
||||
if (!$('#importScreen').length && !$('#closedScreen').length) {
|
||||
oml.ui.importScreen().appendTo(Ox.$body);
|
||||
}
|
||||
} else {
|
||||
console.log(event.originalEvent.dataTransfer);
|
||||
}
|
||||
},
|
||||
dragover: function(event) {
|
||||
event.originalEvent.preventDefault();
|
||||
|
|
Loading…
Reference in a new issue