mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Mouse: Fixed #4146: Don't set the flag to prevent click events if mouseup occurs on a diferent element than mousedown (was preventing the next click event from occuring).
This commit is contained in:
parent
a7eb669c01
commit
f869dab6b0
@ -484,7 +484,7 @@ $.ui.mouse = {
|
|||||||
|
|
||||||
if (this._mouseStarted) {
|
if (this._mouseStarted) {
|
||||||
this._mouseStarted = false;
|
this._mouseStarted = false;
|
||||||
this._preventClickEvent = true;
|
this._preventClickEvent = (event.target == this._mouseDownEvent.target);
|
||||||
this._mouseStop(event);
|
this._mouseStop(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user