MediaWiki:Common.js: Difference between revisions

From EvoLudo
No edit summary
 
No edit summary
 
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
/* special treatment of main page
* e.g. used to suppress the title
*/
if ( /^VirtualLabs(\/.+)?$/.test( wgPageName ) && wgAction == "view" ) {
addOnloadHook(function(){
document.body.className+=" mainpage";
})
}

Latest revision as of 15:31, 5 October 2023

/* Any JavaScript here will be loaded for all users on every page load. */