From 1482449b1816b7bdce9f96be51c47000b9a73453 Mon Sep 17 00:00:00 2001 From: RubaXa Date: Thu, 19 Feb 2015 21:20:16 +0300 Subject: [PATCH] #285: * fixed dragover handler --- Sortable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sortable.js b/Sortable.js index 1b054f77a..a3cb20e4e 100644 --- a/Sortable.js +++ b/Sortable.js @@ -489,7 +489,7 @@ isOwner = (activeGroup === group), canSort = options.sort; - if (evt.dataTransfer && evt.dataTransfer.effectAllowed !== 'move') { + if (!dragEl) { return; }