r112601 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r112600
|
r112601
|
r112602
>
Date:
15:10, 28 February 2012
Author:
mah
Status:
ok
Tags:
Comment:
fixes 34450 - at least, patch with mybug's patch. Closing the bug so
that separate reports can be filed for each problem.
Modified paths:
/trunk/extensions/Vector/modules/ext.vector.collapsibleNav.js
(modified) (
history
)
Diff
[
purge
]
Index: trunk/extensions/Vector/modules/ext.vector.collapsibleNav.js
—
—
@@ -172,11 +172,14 @@
173
173
) {
174
174
$(this)
175
175
.addClass( 'expanded' )
176
+ .removeClass( 'collapsed' )
176
177
.find( 'div.body' )
177
178
.hide() // bug 34450
178
179
.show();
179
180
} else {
180
- $(this).addClass( 'collapsed' );
181
+ $(this)
182
+ .addClass( 'collapsed' )
183
+ .removeClass( 'expanded' );
181
184
}
182
185
// Re-save cookie
183
186
if ( state != null ) {
Status & tagging log
18:53, 28 February 2012
Robmoen
(
talk
|
contribs
)
changed the
status
of r112601
[
removed:
new
added:
ok]