2 * Script for changes list legend
5 /* Remember the collapse state of the legend on recent changes and watchlist pages. */
6 jQuery( document
).ready( function ( $ ) {
8 cookieName
= 'changeslist-state',
13 isCollapsed
= $.cookie( cookieName
) === 'collapsed';
15 $( '.mw-changeslist-legend' )
17 collapsed
: isCollapsed
19 .on( 'beforeExpand.mw-collapsible', function () {
20 $.cookie( cookieName
, 'expanded', cookieOptions
);
22 .on( 'beforeCollapse.mw-collapsible', function () {
23 $.cookie( cookieName
, 'collapsed', cookieOptions
);