MediaWiki:Mobile.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* All JavaScript here will be loaded for users of the mobile site */ | /* All JavaScript here will be loaded for users of the mobile site */ | ||
addEventListener('load', bg3wikiCheckAds); | |||
function | function bg3wikiCheckAds() { | ||
if (window.fusetag === undefined | if (window.fusetag === undefined || window.innerHeight < 720) { | ||
bg3wikiHideAdSlots(); | |||
} | } | ||
} | } | ||
function | function bg3wikiHideAdSlots() { | ||
document.body.classList.replace("mw-ads-enabled", "mw-ads-disabled"); | document.body.classList.replace("mw-ads-enabled", "mw-ads-disabled"); | ||
} | } |
Revision as of 16:27, 9 August 2024
/* All JavaScript here will be loaded for users of the mobile site */
addEventListener('load', bg3wikiCheckAds);
function bg3wikiCheckAds() {
if (window.fusetag === undefined || window.innerHeight < 720) {
bg3wikiHideAdSlots();
}
}
function bg3wikiHideAdSlots() {
document.body.classList.replace("mw-ads-enabled", "mw-ads-disabled");
}