MediaWiki:Common.js: Difference between revisions
EnWikiAdmin (talk | contribs) No edit summary |
EnWikiAdmin (talk | contribs) 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. */ | ||
mw.loader.using('mediawiki.util').then(function() { | mw.loader.using('mediawiki.util').then(function() { | ||
if (mw.config.get('wgNamespaceNumber') == -1) { | // Check if the current page is a Special page | ||
if (mw.config.get('wgNamespaceNumber') === -1) { | |||
var logo = document.querySelector('.mw-wiki-logo'); | var logo = document.querySelector('.mw-wiki-logo'); | ||
if (logo) { | if (logo) { | ||
// Apply inline styles directly to ensure they take effect | |||
logo.style.width = '135px'; | logo.style.width = '135px'; | ||
logo.style.height = '135px'; | logo.style.height = '135px'; |