From 7a1fdb9640de14aa1a3bfb1abeb4185c28c22fd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 11 Apr 2013 09:38:37 -0400 Subject: [PATCH] Draggable: Don't return a value in _move(). --- ui/jquery.ui.draggable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/jquery.ui.draggable.js b/ui/jquery.ui.draggable.js index c2fae1d0d..e0e954895 100644 --- a/ui/jquery.ui.draggable.js +++ b/ui/jquery.ui.draggable.js @@ -186,7 +186,7 @@ $.widget( "ui.draggable", $.ui.interaction, { // If user cancels drag, don't move the element if ( this._trigger( "drag", event, this._fullHash( pointerPosition ) ) === false ) { - return false; + return; } this._setCss();