From 7b538f65e08cd474bf4484db924fd68953dc07e0 Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Mon, 26 May 2008 11:39:25 +0000 Subject: [PATCH] draggable: fixed #2791 --- ui/source/ui.draggable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/source/ui.draggable.js b/ui/source/ui.draggable.js index 21f0b868c..a17922b0f 100644 --- a/ui/source/ui.draggable.js +++ b/ui/source/ui.draggable.js @@ -31,7 +31,7 @@ mouseStart: function(e) { var o = this.options; - if (o.disabled || $(e.target).is('.ui-resizable-handle')) return false; + if (this.helper || o.disabled || $(e.target).is('.ui-resizable-handle')) return false; var handle = !this.options.handle || !$(this.options.handle, this.element).length ? true : false; if(!handle) $(this.options.handle, this.element).each(function() {