Index: trunk/phase3/resources/jquery/jquery.tabIndex.js |
— | — | @@ -5,8 +5,8 @@ |
6 | 6 | */ |
7 | 7 | jQuery.fn.firstTabIndex = function() { |
8 | 8 | var minTabIndex = 0; |
9 | | - $(this).find( '[tabindex]' ).each( function() { |
10 | | - var tabIndex = parseInt( $(this).attr( 'tabindex' ) ); |
| 9 | + jQuery(this).find( '[tabindex]' ).each( function() { |
| 10 | + var tabIndex = parseInt( jQuery(this).attr( 'tabindex' ) ); |
11 | 11 | if ( tabIndex > minTabIndex ) { |
12 | 12 | minTabIndex = tabIndex; |
13 | 13 | } |
— | — | @@ -20,8 +20,8 @@ |
21 | 21 | */ |
22 | 22 | jQuery.fn.lastTabIndex = function() { |
23 | 23 | var maxTabIndex = 0; |
24 | | - $(this).find( '[tabindex]' ).each( function() { |
25 | | - var tabIndex = parseInt( $(this).attr( 'tabindex' ) ); |
| 24 | + jQuery(this).find( '[tabindex]' ).each( function() { |
| 25 | + var tabIndex = parseInt( jQuery(this).attr( 'tabindex' ) ); |
26 | 26 | if ( tabIndex > maxTabIndex ) { |
27 | 27 | maxTabIndex = tabIndex; |
28 | 28 | } |