diff options
author | Richard Gibson <richard.gibson@gmail.com> | 2013-04-06 22:56:03 -0400 |
---|---|---|
committer | Richard Gibson <richard.gibson@gmail.com> | 2013-04-08 13:57:11 -0400 |
commit | a120bbbfae81daccf801fcf8deb0bc77d865e27f (patch) | |
tree | a8e11183d51b1c409c0a42675aaedad1454bc07b /src | |
parent | 1233fc77883c26eeeea4847f9f0b90e07d189b90 (diff) | |
download | jquery-a120bbbfae81daccf801fcf8deb0bc77d865e27f.tar.gz jquery-a120bbbfae81daccf801fcf8deb0bc77d865e27f.zip |
Ref #12652: Allow overriding native .click() suppression
(cherry picked from commit 14b09ef98eb11aae04c028a3b3d7af116c7d2c20)
Diffstat (limited to 'src')
-rw-r--r-- | src/event.js | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/src/event.js b/src/event.js index 45e82ccc4..961e580b4 100644 --- a/src/event.js +++ b/src/event.js @@ -303,8 +303,8 @@ jQuery.event = { // If nobody prevented the default action, do it now if ( !onlyHandlers && !event.isDefaultPrevented() ) { - if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) && - !(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) { + if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) && + jQuery.acceptData( elem ) ) { // Call a native DOM method on the target with the same name name as the event. // Don't do default actions on window, that's where global variables be (#6170) @@ -522,15 +522,6 @@ jQuery.event = { // Prevent triggered image.load events from bubbling to window.load noBubble: true }, - click: { - // For checkbox, fire native event so checked state will be right - trigger: function() { - if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) { - this.click(); - return false; - } - } - }, focus: { // Fire native event if possible so blur/focus sequence is correct trigger: function() { @@ -550,6 +541,20 @@ jQuery.event = { }, delegateType: "focusout" }, + click: { + // For checkbox, fire native event so checked state will be right + trigger: function() { + if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) { + this.click(); + return false; + } + }, + + // For cross-browser consistency, don't fire native .click() on links + _default: function( event ) { + return jQuery.nodeName( event.target, "a" ); + } + }, beforeunload: { postDispatch: function( event ) { |