Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Shorten even further
  • Loading branch information
timmywil committed Apr 3, 2011
1 parent 479b28f commit 56014a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/attributes.js
Expand Up @@ -295,13 +295,13 @@ jQuery.extend({

var ret, hooks,
notxml = nType !== 1 || !jQuery.isXMLDoc( elem ),
isFormObjects = !jQuery.support.getSetAttribute && ( name === "name" || elem.nodeName === "FORM" );
isFormObjects = formHook && ( name === "name" || elem.nodeName === "FORM" );

// Normalize the name if needed
name = notxml && jQuery.attrFix[ name ] || name;

// Get the appropriate hook, or the formHook if getSetAttribute is not supported and we have form objects in IE6/7
hooks = isFormObjects && formHook ? formHook( name ) : jQuery.attrHooks[ name ];
hooks = isFormObjects ? formHook( name ) : jQuery.attrHooks[ name ];

if ( value !== undefined ) {

Expand Down

0 comments on commit 56014a1

Please sign in to comment.