Draggable: Don't return a value in _move().

This commit is contained in:
Scott González 2013-04-11 09:38:37 -04:00
parent 008861d764
commit 7a1fdb9640

View File

@ -186,7 +186,7 @@ $.widget( "ui.draggable", $.ui.interaction, {
// If user cancels drag, don't move the element // If user cancels drag, don't move the element
if ( this._trigger( "drag", event, if ( this._trigger( "drag", event,
this._fullHash( pointerPosition ) ) === false ) { this._fullHash( pointerPosition ) ) === false ) {
return false; return;
} }
this._setCss(); this._setCss();