Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Commit 2bbaa27

Browse files
HiCoasterTaornicholus
authored andcommitted
fix(dnd.js): Firefox drag area flickers (#1946)
Removes Firefox check in leavingDocumentOut. fixes #1862
1 parent 3f8be9e commit 2bbaa27

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

client/js/dnd.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,10 +215,6 @@ qq.DragAndDrop = function(o) {
215215
// * IE10+: If the file is dragged out of the window too quickly, IE does not set the expected values of the
216216
// event's X & Y properties.
217217
function leavingDocumentOut(e) {
218-
if (qq.firefox()) {
219-
return !e.relatedTarget;
220-
}
221-
222218
if (qq.safari()) {
223219
return e.x < 0 || e.y < 0;
224220
}

0 commit comments

Comments
 (0)