Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Taglines.js: Difference between revisions

MediaWiki interface page
m Elias moved page MediaWiki:MediaWiki:Taglines.js to MediaWiki:Taglines.js without leaving a redirect
No edit summary
Line 3: Line 3:
"FREE general care for any patient in need! Just come to Cow Alley 13 and ask for Doctor Nicholas. <i>No refunds. Terms and conditions apply.</i>",
"FREE general care for any patient in need! Just come to Cow Alley 13 and ask for Doctor Nicholas. <i>No refunds. Terms and conditions apply.</i>",
"Chains of Iniquity returning soon™!",
"Chains of Iniquity returning soon™!",
"egg mimic",
"egg mimic",
"Do a backflip (Bravado, Risky)",
"Do a backflip (Bravado, Risky)",
"Sticking out your panache for the finisher"
"Sticking out your panache for the finisher"
];
];


document.getElementById("footer-tagline").innerHTML = wackyTaglines[Math.floor(Math.random()*wackyTaglines.length)];
const footerTagline = document.getElementById("footer-tagline");
footerTagLine.innerHTML = wackyTaglines[Math.floor(Math.random()*wackyTaglines.length)];
footerTagline.onclick = function () {
        location.href = "https://lore.gnoblin.cc/edit/MediaWiki:Taglines.js";
    };

Revision as of 12:21, 17 May 2026

const wackyTaglines=[ "Your face beautiful", "FREE general care for any patient in need! Just come to Cow Alley 13 and ask for Doctor Nicholas. No refunds. Terms and conditions apply.", "Chains of Iniquity returning soon™!", "egg mimic", "Do a backflip (Bravado, Risky)", "Sticking out your panache for the finisher" ];

const footerTagline = document.getElementById("footer-tagline"); footerTagLine.innerHTML = wackyTaglines[Math.floor(Math.random()*wackyTaglines.length)]; footerTagline.onclick = function () {

       location.href = "https://lore.gnoblin.cc/edit/MediaWiki:Taglines.js";
   };