Skip to content

Commit

Permalink
#1446: fixed dropEffect
Browse files Browse the repository at this point in the history
  • Loading branch information
owen-m1 committed Feb 11, 2019
1 parent 890f378 commit 355c748
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sortable.js
Original file line number Diff line number Diff line change
Expand Up @@ -1727,7 +1727,7 @@

function _globalDragOver(/**Event*/evt) {
if (evt.dataTransfer) {
evt.dataTransfer.dropEffect = 'none';
evt.dataTransfer.dropEffect = 'move';
}
evt.cancelable && evt.preventDefault();
}
Expand Down

0 comments on commit 355c748

Please sign in to comment.