We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18ad8ff commit 0680b59Copy full SHA for 0680b59
ui/jquery.ui.mouse.js
@@ -75,6 +75,11 @@ $.widget("ui.mouse", {
75
}
76
77
78
+ // Click event may never have fired (Gecko & Opera)
79
+ if (true === $.data(event.target, this.widgetName + '.preventClickEvent')) {
80
+ $.removeData(event.target, this.widgetName + '.preventClickEvent');
81
+ }
82
+
83
// these delegates are required to keep context
84
this._mouseMoveDelegate = function(event) {
85
return self._mouseMove(event);
0 commit comments