fix: clear dragging on mouseup as well

dragging a modal wasn't firing dragend
isekai-main
Barış Soner Uşaklı 3 years ago
parent 5aca106b81
commit 70ad4a5222

@ -91,7 +91,7 @@ define('uploadHelpers', ['alerts'], function (alerts) {
draggingDocument = true; draggingDocument = true;
}) })
.off('dragend') .off('dragend')
.on('dragend', function () { .on('dragend, mouseup', function () {
draggingDocument = false; draggingDocument = false;
}); });

Loading…
Cancel
Save