mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Draggable: Don't return a value in _move().
This commit is contained in:
parent
008861d764
commit
7a1fdb9640
2
ui/jquery.ui.draggable.js
vendored
2
ui/jquery.ui.draggable.js
vendored
@ -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();
|
||||||
|
Loading…
Reference in New Issue
Block a user