PrefixSearch: Avoid notice when no subpage exists
[mediawiki.git] / resources / src / mediawiki.special / mediawiki.special.changeslist.legend.js
blobc9e55111ffa57a183b93325d51c7894979baace8
1 /*!
2  * Script for changes list legend
3  */
5 /* Remember the collapse state of the legend on recent changes and watchlist pages. */
6 jQuery( document ).ready( function ( $ ) {
7         var
8                 cookieName = 'changeslist-state',
9                 cookieOptions = {
10                         expires: 30,
11                         path: '/'
12                 },
13                 isCollapsed = $.cookie( cookieName ) === 'collapsed';
15         $( '.mw-changeslist-legend' )
16                 .makeCollapsible( {
17                         collapsed: isCollapsed
18                 } )
19                 .on( 'beforeExpand.mw-collapsible', function () {
20                         $.cookie( cookieName, 'expanded', cookieOptions );
21                 } )
22                 .on( 'beforeCollapse.mw-collapsible', function () {
23                         $.cookie( cookieName, 'collapsed', cookieOptions );
24                 } );
25 } );