MediaWiki:Mobile.js: Difference between revisions

From bg3.wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 6: Line 6:


function bg3wikiEnableAds() {
function bg3wikiEnableAds() {
console.log("Enabling mobile ads");
if (window.fusetag === undefined) {
if (window.fusetag === undefined) {
console.log("Fuse not found");
bg3wikiDisableAds();
bg3wikiDisableAds();
return;
return;
}
}
//if (window.innerHeight >= 720) {
if (window.innerHeight < 720) {
// console.log("Registering footer ad");
bg3wikiDisableAds();
// fusetag.registerZone("bg3wiki-footer-ad-fuse");
return;
//}
}
}
}



Revision as of 16:52, 9 August 2024

/* All JavaScript here will be loaded for users of the mobile site */

if (mw.config.get("wgUserId") == null) {
	addEventListener('load', bg3wikiEnableAds);
}

function bg3wikiEnableAds() {
	if (window.fusetag === undefined) {
		bg3wikiDisableAds();
		return;
	}
	if (window.innerHeight < 720) {
		bg3wikiDisableAds();
		return;
	}
}

function bg3wikiDisableAds() {
	document.body.classList.replace("mw-ads-enabled", "mw-ads-disabled");
}