Revert "workaround for some drags not being accepted"

This reverts commit 99009be1ca.

didn't fix user's problem, and has introduced issues with the cursor
disappearing
This commit is contained in:
Damien Elmes 2018-02-05 11:27:14 +10:00
parent a617be1779
commit e7046ba398

View File

@ -162,9 +162,6 @@ function focusPrevious() {
}
function onDragOver(elem) {
var e = window.event;
e.dataTransfer.dropEffect = "copy";
e.preventDefault();
// if we focus the target element immediately, the drag&drop turns into a
// copy, so note it down for later instead
dropTarget = elem;