mirror of https://github.com/OCA/web.git
[FIX] web_drop_target Make sure that when a File is dropped into a form the event is propagated and the action only takes place when the element dropped is actually a Blob object
parent
1754634700
commit
0891e17f37
|
@ -26,7 +26,7 @@ odoo.define('web_drop_target', function(require) {
|
|||
|
||||
_on_drop: function(e) {
|
||||
var drop_item = this._get_drop_item(e);
|
||||
if(!drop_item) {
|
||||
if(!drop_item || !(drop_item.getAsFile() instanceof Blob)) {
|
||||
return;
|
||||
}
|
||||
jQuery(e.delegateTarget).removeClass(this._drag_over_class);
|
||||
|
@ -35,6 +35,7 @@ odoo.define('web_drop_target', function(require) {
|
|||
_.partial(this._handle_file_drop, drop_item.getAsFile())
|
||||
);
|
||||
reader.readAsArrayBuffer(drop_item.getAsFile());
|
||||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue