Skip to content

Commit 7a1fdb9

Browse files
committed
Draggable: Don't return a value in _move().
1 parent 008861d commit 7a1fdb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/jquery.ui.draggable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ $.widget( "ui.draggable", $.ui.interaction, {
186186
// If user cancels drag, don't move the element
187187
if ( this._trigger( "drag", event,
188188
this._fullHash( pointerPosition ) ) === false ) {
189-
return false;
189+
return;
190190
}
191191

192192
this._setCss();

0 commit comments

Comments
 (0)