Localisation updates from https://translatewiki.net.
[mediawiki.git] / resources / src / mediawiki.special.changeslist.legend.js
blob6323a6d1f1711da8c7efd42664af570c6ff23448
1 /*!
2  * Script for changes list legend
3  */
5 /* Remember the collapse state of the legend on recent changes and watchlist pages. */
6 mw.hook( 'wikipage.content' ).add( ( $container ) => {
7         $container.find( '.mw-changeslist-legend' )
8                 .on( 'toggle', function () {
9                         mw.cookie.set( 'changeslist-state', this.open ? 'expanded' : 'collapsed' );
10                 } );
11 } );