Merge "Remove not used private member variable mParserWarnings from OutputPage"
[mediawiki.git] / resources / src / mediawiki / mediawiki.toc.js
blob78627fcae0d20d5c2f11e6cc4081f49f9487342e
1 ( function ( mw, $ ) {
2         'use strict';
4         // Table of contents toggle
5         mw.hook( 'wikipage.content' ).add( function ( $content ) {
6                 var $toc, $tocTitle, $tocToggleLink, $tocList, hideToc;
7                 $toc = $content.find( '#toc' );
8                 $tocTitle = $content.find( '#toctitle' );
9                 $tocToggleLink = $content.find( '#togglelink' );
10                 $tocList = $toc.find( 'ul' ).eq( 0 );
12                 // Hide/show the table of contents element
13                 function toggleToc() {
14                         if ( $tocList.is( ':hidden' ) ) {
15                                 $tocList.slideDown( 'fast' );
16                                 $tocToggleLink.text( mw.msg( 'hidetoc' ) );
17                                 $toc.removeClass( 'tochidden' );
18                                 mw.cookie.set( 'hidetoc', null );
19                         } else {
20                                 $tocList.slideUp( 'fast' );
21                                 $tocToggleLink.text( mw.msg( 'showtoc' ) );
22                                 $toc.addClass( 'tochidden' );
23                                 mw.cookie.set( 'hidetoc', '1' );
24                         }
25                 }
27                 // Only add it if there is a complete TOC and it doesn't
28                 // have a toggle added already
29                 if ( $toc.length && $tocTitle.length && $tocList.length && !$tocToggleLink.length ) {
30                         hideToc = mw.cookie.get( 'hidetoc' ) === '1';
32                         $tocToggleLink = $( '<a href="#" id="togglelink"></a>' )
33                                 .text( hideToc ? mw.msg( 'showtoc' ) : mw.msg( 'hidetoc' ) )
34                                 .click( function ( e ) {
35                                         e.preventDefault();
36                                         toggleToc();
37                                 } );
39                         $tocTitle.append(
40                                 $tocToggleLink
41                                         .wrap( '<span class="toctoggle"></span>' )
42                                         .parent()
43                                                 .prepend( '&nbsp;[' )
44                                                 .append( ']&nbsp;' )
45                         );
47                         if ( hideToc ) {
48                                 $tocList.hide();
49                                 $toc.addClass( 'tochidden' );
50                         }
51                 }
52         } );
54 }( mediaWiki, jQuery ) );