Don't use extend when setting the action attrHook for IE6/7

This commit is contained in:
timmywil 2011-03-13 16:29:33 -04:00
parent 77c559c3cb
commit f578e0f997

View file

@ -401,7 +401,7 @@ if ( !jQuery.support.getSetAttribute ) {
}); });
// Action attribute in ie6/7 returns form objects // Action attribute in ie6/7 returns form objects
jQuery.attrHooks.action = jQuery.extend( jQuery.attrHooks.action, { jQuery.attrHooks.action = {
get: function( elem ) { get: function( elem ) {
return elem.nodeName === "FORM" ? elem.getAttributeNode("action").nodeValue : elem.getAttribute("action"); return elem.nodeName === "FORM" ? elem.getAttributeNode("action").nodeValue : elem.getAttribute("action");
}, },
@ -409,7 +409,7 @@ if ( !jQuery.support.getSetAttribute ) {
elem.nodeName === "FORM" ? elem.getAttributeNode("action").nodeValue = value : elem.setAttribute("action", value); elem.nodeName === "FORM" ? elem.getAttributeNode("action").nodeValue = value : elem.setAttribute("action", value);
return value; return value;
} }
}); };
} }
// Remove certain attrs if set to false // Remove certain attrs if set to false