MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* Any JavaScript here will be loaded for all users on every page load. */ | /* Any JavaScript here will be loaded for all users on every page load. */ | ||
if (mw.config.get("wgTitle") == "Web") { | // For experiments, we can limit this to a single page, like so: | ||
//if (mw.config.get("wgTitle") == "Web") { | |||
if (mw.config.get("wgRevisionId") < 11000) { | if (mw.config.get("wgRevisionId") < 11000) { | ||
alert(mw.config.get("wgNamespaceNumber")); | |||
var notice = document.getElementById("siteNotice"); | var notice = document.getElementById("siteNotice"); | ||
notice.style.border = "2px solid var(--bdr-hl)"; | notice.style.border = "2px solid var(--bdr-hl)"; | ||
Line 11: | Line 13: | ||
} | } | ||
} | //} |
Revision as of 03:41, 10 July 2023
/* Any JavaScript here will be loaded for all users on every page load. */
// For experiments, we can limit this to a single page, like so:
//if (mw.config.get("wgTitle") == "Web") {
if (mw.config.get("wgRevisionId") < 11000) {
alert(mw.config.get("wgNamespaceNumber"));
var notice = document.getElementById("siteNotice");
notice.style.border = "2px solid var(--bdr-hl)";
notice.style.padding = "5px";
notice.style.fontSize = "1.2em";
notice.innerHTML = "<b>Warning: This page has not been updated since Early Access, the contents may be outdated.</b>";
}
//}