This commit is contained in:
syuilo 2017-03-10 18:12:28 +09:00
parent 268a4f44b9
commit 31f4d6c0bf
1 changed files with 1 additions and 3 deletions

View File

@ -359,10 +359,10 @@
};
this.ondragover = e => {
e.preventDefault();
e.stopPropagation();
this.draghover = true;
e.dataTransfer.dropEffect = e.dataTransfer.effectAllowed == 'all' ? 'copy' : 'move';
return false;
};
this.ondragenter = e => {
@ -382,8 +382,6 @@
if (e.dataTransfer.files.length > 0) {
e.dataTransfer.files.forEach(this.upload);
}
return false;
};
this.onkeydown = e => {