aboutsummaryrefslogtreecommitdiffstats
path: root/ui/source
diff options
context:
space:
mode:
Diffstat (limited to 'ui/source')
-rw-r--r--ui/source/ui.draggable.js2
1 files changed, 1 insertions, 1 deletions
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() {