Index: trunk/extensions/Vector/modules/ext.vector.collapsibleNav.js |
— | — | @@ -160,7 +160,6 @@ |
161 | 161 | // Apply a class to the entire panel to activate styles |
162 | 162 | $( '#mw-panel' ).addClass( 'collapsible-nav' ); |
163 | 163 | // Use cookie data to restore preferences of what to show and hide |
164 | | - $( '#mw-panel div.body').hide(); |
165 | 164 | $( '#mw-panel > div.portal:not(.persistent)' ) |
166 | 165 | .each( function( i ) { |
167 | 166 | var id = $(this).attr( 'id' ); |
— | — | @@ -174,6 +173,7 @@ |
175 | 174 | $(this) |
176 | 175 | .addClass( 'expanded' ) |
177 | 176 | .find( 'div.body' ) |
| 177 | + .hide() // bug 34450 |
178 | 178 | .show(); |
179 | 179 | } else { |
180 | 180 | $(this).addClass( 'collapsed' ); |