Index: trunk/phase3/resources/jquery/jquery.placeholder.js |
— | — | @@ -16,7 +16,7 @@ |
17 | 17 | // Otherwise, use a combination of blur and focus event handlers and a placeholder class |
18 | 18 | else { |
19 | 19 | jQuery(this).each( function() { |
20 | | - $input = jQuery(this); |
| 20 | + var $input = jQuery(this); |
21 | 21 | $input |
22 | 22 | // Show on blur if empty |
23 | 23 | .bind( 'blur', function() { |
Index: trunk/phase3/resources/mediawiki/mediawiki.specials.preferences.js |
— | — | @@ -2,14 +2,14 @@ |
3 | 3 | * JavaScript for Special:Preferences |
4 | 4 | */ |
5 | 5 | |
6 | | -$( '#prefsubmit' ).attr( 'id', 'prefcontrol' ).end() |
| 6 | +$( '#prefsubmit' ).attr( 'id', 'prefcontrol' ); |
7 | 7 | $( '#preferences' ) |
8 | 8 | .addClass( 'jsprefs' ) |
9 | 9 | .before( $( '<ul id="preftoc"></ul>' ) ) |
10 | | - .find( '> fieldset' ) |
| 10 | + .children( 'fieldset' ) |
11 | 11 | .hide() |
12 | 12 | .addClass( 'prefsection' ) |
13 | | - .find( '> legend' ) |
| 13 | + .children( 'legend' ) |
14 | 14 | .addClass( 'mainLegend' ) |
15 | 15 | .each( function( i ) { |
16 | 16 | $(this).parent().attr( 'id', 'prefsection-' + i ); |