aboutsummaryrefslogtreecommitdiffstats
path: root/resources/src/mediawiki.special.changeslist.legend.js
blob: 6323a6d1f1711da8c7efd42664af570c6ff23448 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/*!
 * Script for changes list legend
 */

/* Remember the collapse state of the legend on recent changes and watchlist pages. */
mw.hook( 'wikipage.content' ).add( ( $container ) => {
	$container.find( '.mw-changeslist-legend' )
		.on( 'toggle', function () {
			mw.cookie.set( 'changeslist-state', this.open ? 'expanded' : 'collapsed' );
		} );
} );