Jump to content

MediaWiki:Common.js: Difference between revisions

From OkayXairen Wiki
m made this redundant (i think)
Tags: Blanking Reverted
m Reverted edit by Maorwy (talk) to last revision by Redk1tty
Tag: Rollback
Line 1: Line 1:
 
if (window.location.href.includes("The_Bold_Plague")) {
    const style = document.createElement("style");
    style.textContent = `
        * {
            font-weight: bold !important;
        }
    `;
    document.head.appendChild(style);
}

Revision as of 18:27, 11 March 2026

if (window.location.href.includes("The_Bold_Plague")) {
    const style = document.createElement("style");
    style.textContent = `
        * {
            font-weight: bold !important;
        }
    `;
    document.head.appendChild(style);
}