diff options
author | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-05-26 11:39:25 +0000 |
---|---|---|
committer | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-05-26 11:39:25 +0000 |
commit | 7b538f65e08cd474bf4484db924fd68953dc07e0 (patch) | |
tree | ac109e354ee45c01b0ebae66252b925c29e39ee4 /ui/source | |
parent | 062d02ae5c339a62acb84177a6abbdf3bdb5f7d6 (diff) | |
download | jquery-ui-7b538f65e08cd474bf4484db924fd68953dc07e0.tar.gz jquery-ui-7b538f65e08cd474bf4484db924fd68953dc07e0.zip |
draggable: fixed #2791
Diffstat (limited to 'ui/source')
-rw-r--r-- | ui/source/ui.draggable.js | 2 |
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() {
|