diff options
Diffstat (limited to 'skins/Vector/vector.js')
-rw-r--r-- | skins/Vector/vector.js | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/skins/Vector/vector.js b/skins/Vector/vector.js index 7be35355..8f839186 100644 --- a/skins/Vector/vector.js +++ b/skins/Vector/vector.js @@ -34,11 +34,6 @@ jQuery( function ( $ ) { } ); /** - * Sidebar - */ - $( '#mw-panel > .portal:first' ).addClass( 'first' ); - - /** * Collapsible tabs */ var $cactions = $( '#p-cactions' ), @@ -54,16 +49,16 @@ jQuery( function ( $ ) { $cactions .removeClass( 'emptyPortlet' ) .find( 'h3' ) - .css( 'width', '1px' ).animate( { 'width': originalDropdownWidth }, 'normal' ); + .css( 'width', '1px' ).animate( { width: originalDropdownWidth }, 'normal' ); } } ) .bind( 'beforeTabExpand', function () { // If we're removing the last child node right now, hide the dropdown if ( $cactions.find( 'li' ).length === 1 ) { - $cactions.find( 'h3' ).animate( { 'width': '1px' }, 'normal', function () { + $cactions.find( 'h3' ).animate( { width: '1px' }, 'normal', function () { $( this ).attr( 'style', '' ) .parent().addClass( 'emptyPortlet' ); - }); + } ); } } ) .collapsibleTabs( { |