Pass correct arg list to special._default. Thanks @mikaelkaron!

This commit is contained in:
Dave Methvin
2011-10-27 16:02:54 -04:00
parent 736d4d7706
commit df4a160be7
2 changed files with 6 additions and 6 deletions

View File

@@ -365,7 +365,7 @@ jQuery.event = {
// If nobody prevented the default action, do it now
if ( !event.isDefaultPrevented() ) {
if ( (!special._default || special._default.call( elem.ownerDocument, event, data ) === false) &&
if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) &&
!(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) {
// Call a native DOM method on the target with the same name name as the event.