No edit summary Tag: 2017 source edit |
No edit summary Tag: 2017 source edit |
||
Line 1: | Line 1: | ||
{{Collapsible|cheader=The filter on special pages (e.g., "Recent changes") fails to load. | {{Collapsible|cheader=The filter on special pages (e.g., "Recent changes") fails to load. {{Bsvs|bsvFrom=|bsvTo=4.2.6|bsvFeature=}} | ||
|cdescription= In some cases, the page ''Special:RecentChanges'' does not finish loading. | |cdescription= In some cases, the page ''Special:RecentChanges'' does not finish loading. | ||
|chelp=You can add the following script to ''MediaWiki:Common.js'': | |chelp=You can add the following script to ''MediaWiki:Common.js'': |
Revision as of 11:11, 19 April 2023
The filter on special pages (e.g., "Recent changes") fails to load. -v4.2.6 +
Description: In some cases, the page Special:RecentChanges does not finish loading.
Help: You can add the following script to MediaWiki:Common.js:
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' ) {
document.body.classList.add( 'mw-rcfilters-ui-initialized' );
}
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Recentchanges' ) {
document.body.classList.add( 'mw-rcfilters-ui-initialized' );
}