User:Melecie/sans-script.js

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
let trg = false;
if ( $("aprilfools").length ) {
	trg = true;
} else if ( $(".ombox-humor").length ) {
	trg = true;
} else if ( $(".ombox-humorantipolicy").length ) {
	trg = true;
} else {
	for (let c of mw.config.get("wgCategories")) {
		if ([
			"Wikipedia April Fools' Day",
			"Category:Wikipedia humor",
		].includes(c)) { trg = true }
		else {
			let regex = new RegExp("Wikipedia April Fools'");
			if (regex.test(c)) { trg = true; }
		}
	}
}

if (trg) {
	$("body").css("font-family", "Comic Sans MS, Chalkboard, Papyrus, sans-serif");
}
if (typeof hideFools != "undefined" && hideFools) {
	$(".aprilfools").html("");
	$(".ombox-humor").html("");
	$(".ombox-humorantipolicy").html("");
}