diff options
author | timmywil <timmywillisn@gmail.com> | 2011-10-06 17:17:51 -0400 |
---|---|---|
committer | timmywil <timmywillisn@gmail.com> | 2011-10-06 17:17:51 -0400 |
commit | ce8d9c0ca59a8f03e119c80ed29c7dbc65efdd85 (patch) | |
tree | 2faa467081d78e3f1e92c8c6a7fe0bc58c47127f /src/attributes.js | |
parent | e5b16e3356358a17c54c647b129e44cb09076ec8 (diff) | |
download | jquery-ce8d9c0ca59a8f03e119c80ed29c7dbc65efdd85.tar.gz jquery-ce8d9c0ca59a8f03e119c80ed29c7dbc65efdd85.zip |
Add a hook for removing contenteditable in IE6/7 and remove the unnecessary jQuery.attrFix. Fixes #10429.
Diffstat (limited to 'src/attributes.js')
-rw-r--r-- | src/attributes.js | 43 |
1 files changed, 20 insertions, 23 deletions
diff --git a/src/attributes.js b/src/attributes.js index 71353cf78..345845689 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -291,11 +291,6 @@ jQuery.extend({ offset: true }, - attrFix: { - // Always normalize to ensure hook usage - tabindex: "tabIndex" - }, - attr: function( elem, name, value, pass ) { var nType = elem.nodeType; @@ -318,20 +313,8 @@ jQuery.extend({ // Normalize the name if needed if ( notxml ) { - name = jQuery.attrFix[ name ] || name; - - hooks = jQuery.attrHooks[ name ]; - - if ( !hooks ) { - // Use boolHook for boolean attributes - if ( rboolean.test( name ) ) { - hooks = boolHook; - - // Use nodeHook if available( IE6/7 ) - } else if ( nodeHook ) { - hooks = nodeHook; - } - } + name = name.toLowerCase(); + hooks = jQuery.attrHooks[ name ] || (rboolean.test( name ) ? boolHook : nodeHook); } if ( value !== undefined ) { @@ -371,8 +354,7 @@ jQuery.extend({ l = attrNames.length; for ( ; i < l; i++ ) { - name = attrNames[ i ]; - name = jQuery.attrFix[ name ] || name; + name = attrNames[ i ].toLowerCase(); // See #9699 for explanation of this approach (setting first, then removal) jQuery.attr( elem, name, "" ); @@ -493,8 +475,8 @@ jQuery.extend({ } }); -// Add the tabindex propHook to attrHooks for back-compat -jQuery.attrHooks.tabIndex = jQuery.propHooks.tabIndex; +// Add the tabIndex propHook to attrHooks for back-compat (different case is intentional) +jQuery.attrHooks.tabindex = jQuery.propHooks.tabIndex; // Hook for boolean attributes boolHook = { @@ -556,6 +538,9 @@ if ( !jQuery.support.getSetAttribute ) { } }; + // Apply the nodeHook to tabindex + jQuery.attrHooks.tabindex.set = nodeHook.set; + // Set width and height to auto instead of 0 on empty string( Bug #8150 ) // This is for removals jQuery.each([ "width", "height" ], function( i, name ) { @@ -568,6 +553,18 @@ if ( !jQuery.support.getSetAttribute ) { } }); }); + + // Set contenteditable to false on removals(#10429) + // Setting to empty string throws an error as an invalid value + jQuery.attrHooks.contenteditable = { + get: nodeHook.get, + set: function( elem, value, name ) { + if ( value === "" ) { + value = "false"; + } + nodeHook.set( elem, value, name ); + } + }; } |