aboutsummaryrefslogtreecommitdiffstats
path: root/src/attributes.js
diff options
context:
space:
mode:
authortimmywil <timmywillisn@gmail.com>2012-05-30 13:46:50 -0400
committertimmywil <timmywillisn@gmail.com>2012-05-30 13:46:50 -0400
commit3e2a77c5e882b5fc88bf5469ea00067833a2a059 (patch)
tree821eefc2cc9297bef1803d0f54469bc74e133fbd /src/attributes.js
parentf313384be3a311fc0f3437a29b710aa1a50f131c (diff)
downloadjquery-3e2a77c5e882b5fc88bf5469ea00067833a2a059.tar.gz
jquery-3e2a77c5e882b5fc88bf5469ea00067833a2a059.zip
Remove the tabindex attrHook. Fixes #8473
Diffstat (limited to 'src/attributes.js')
-rw-r--r--src/attributes.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/attributes.js b/src/attributes.js
index 4ec364cb7..cc2256f88 100644
--- a/src/attributes.js
+++ b/src/attributes.js
@@ -494,9 +494,6 @@ jQuery.extend({
}
});
-// Add the tabIndex propHook to attrHooks for back-compat (different case is intentional)
-jQuery.attrHooks.tabindex = jQuery.propHooks.tabIndex;
-
// Hook for boolean attributes
boolHook = {
get: function( elem, name ) {
@@ -558,9 +555,6 @@ if ( !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 ) {