Skip to content

Commit

Permalink
SortableJS#1446: fixed dropEffect
Browse files Browse the repository at this point in the history
  • Loading branch information
owen-m1 authored and elo7-developer committed Nov 18, 2019
1 parent 109cc5b commit 9b27d9b
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 @@ -1714,7 +1714,7 @@ define('sortable', [], function sortableFactory() {

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 9b27d9b

Please sign in to comment.