mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
draggable: fixed #2791
This commit is contained in:
parent
062d02ae5c
commit
7b538f65e0
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user