MediaWiki:Mobile.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 4: | Line 4: | ||
function bg3wikiEnableAds() { | function bg3wikiEnableAds() { | ||
console.log("Enablind mobile ads"); | |||
if (!fusetag) { | if (!fusetag) { | ||
return; | return; | ||
} | } | ||
console.log("Fuse found"); | |||
if (window.innerHeight >= 720) { | if (window.innerHeight >= 720) { | ||
console.log("Registering footer ad"); | console.log("Registering footer ad"); |
Revision as of 13:54, 8 August 2024
/* All JavaScript here will be loaded for users of the mobile site */
addEventListener('load', bg3wikiEnableAds);
function bg3wikiEnableAds() {
console.log("Enablind mobile ads");
if (!fusetag) {
return;
}
console.log("Fuse found");
if (window.innerHeight >= 720) {
console.log("Registering footer ad");
fusetag.registerZone("bg3wiki-footer-ad-fuse");
}
}