MediaWiki:Mobile.js: Difference between revisions

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


function bg3wikiEnableAds() {
function bg3wikiEnableAds() {
console.log("Enablind mobile ads");
console.log("Enabling mobile ads");
if (window.fusetag === undefined) {
if (window.fusetag === undefined) {
console.log("Fuse not found");
console.log("Fuse not found");

Revision as of 18:04, 8 August 2024

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

addEventListener('load', bg3wikiEnableAds);

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