diff options
Diffstat (limited to 'resources/src/jquery/jquery.makeCollapsible.js')
-rw-r--r-- | resources/src/jquery/jquery.makeCollapsible.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/src/jquery/jquery.makeCollapsible.js b/resources/src/jquery/jquery.makeCollapsible.js index e355196ed4c2..c3d7dbf2f12d 100644 --- a/resources/src/jquery/jquery.makeCollapsible.js +++ b/resources/src/jquery/jquery.makeCollapsible.js @@ -190,7 +190,7 @@ collapseText = options.toggleText.collapseText; expandText = options.toggleText.expandText; - $textContainer = $collapsible.find( '.mw-collapsible-text' ); + $textContainer = $toggle.find( '.mw-collapsible-text' ); if ( $textContainer.length ) { $textContainer.text( wasCollapsed ? collapseText : expandText ); } |