I'm not understand comment
http://dev.jqueryui.com/ticket/4333#comment:17The bug does not exist any more in 1.7+? I did not check. If the bug
does not exist, in what it consisted?
My solution for this bug:
$.ui.mouse = {
.................
_mouseDown: function(event) {
.................
if ($(event).data('mouseHandled')) { return; } //if
(event.originalEvent.mouseHandled) { return; }
.................
$(event).data('mouseHandled', true); //
event.originalEvent.mouseHandled = true;
return true;
},
.................
_mouseUp: function(event) {
.................
$(event).data('mouseHandled', false);
return false;
},
But Scott González not sure that it will be work, because jQuery UI
have to use event.originalEvent because when the event is generated by
the browser and it bubbles, jQuery creates a new event object for
every element that the event bubbles through.