]> source.dussan.org Git - jquery-ui.git/commitdiff
Core: reuse tabindex value. Fixed #7257 - optimize :tabbable.
authoradambaratz <adam.baratz@gmail.com>
Fri, 15 Apr 2011 14:51:56 +0000 (07:51 -0700)
committerScott González <scott.gonzalez@gmail.com>
Fri, 29 Apr 2011 12:24:27 +0000 (08:24 -0400)
ui/jquery.ui.core.js

index 51f6b71d786be8a32e0d20da49a56588bd8e04d6..8bcc4c441cb7c8291c2f1cd99686b88f1790c9a7 100644 (file)
@@ -174,6 +174,27 @@ $.each( [ "Width", "Height" ], function( i, name ) {
 });
 
 // selectors
+function focusable( element, isTabIndexNotNaN ) {
+       var nodeName = element.nodeName.toLowerCase();
+       if ( "area" === nodeName ) {
+               var map = element.parentNode,
+                       mapName = map.name,
+                       img;
+               if ( !element.href || !mapName || map.nodeName.toLowerCase() !== "map" ) {
+                       return false;
+               }
+               img = $( "img[usemap=#" + mapName + "]" )[0];
+               return !!img && visible( img );
+       }
+       return ( /input|select|textarea|button|object/.test( nodeName )
+               ? !element.disabled
+               : "a" == nodeName
+                       ? element.href || isTabIndexNotNaN
+                       : isTabIndexNotNaN)
+               // the element and all of its ancestors must be visible
+               && visible( element );
+}
+
 function visible( element ) {
        return !$( element ).parents().andSelf().filter(function() {
                return $.curCSS( this, "visibility" ) === "hidden" ||
@@ -187,30 +208,13 @@ $.extend( $.expr[ ":" ], {
        },
 
        focusable: function( element ) {
-               var nodeName = element.nodeName.toLowerCase(),
-                       tabIndex = $.attr( element, "tabindex" );
-               if ( "area" === nodeName ) {
-                       var map = element.parentNode,
-                               mapName = map.name,
-                               img;
-                       if ( !element.href || !mapName || map.nodeName.toLowerCase() !== "map" ) {
-                               return false;
-                       }
-                       img = $( "img[usemap=#" + mapName + "]" )[0];
-                       return !!img && visible( img );
-               }
-               return ( /input|select|textarea|button|object/.test( nodeName )
-                       ? !element.disabled
-                       : "a" == nodeName
-                               ? element.href || !isNaN( tabIndex )
-                               : !isNaN( tabIndex ))
-                       // the element and all of its ancestors must be visible
-                       && visible( element );
+               return focusable( element, !isNaN( $.attr( element, "tabindex" ) ) );
        },
 
        tabbable: function( element ) {
-               var tabIndex = $.attr( element, "tabindex" );
-               return ( isNaN( tabIndex ) || tabIndex >= 0 ) && $( element ).is( ":focusable" );
+               var tabIndex = $.attr( element, "tabindex" ),
+                       isTabIndexNaN = isNaN( tabIndex );
+               return ( isTabIndexNaN || tabIndex >= 0 ) && focusable( element, !isTabIndexNaN );
        }
 });