Jump to content

MediaWiki:Main Page.js: Difference between revisions

From Ditzy Wiki
No edit summary
No edit summary
Line 15: Line 15:
   const link = $content.find('a[href="/wiki/File:Doomguy.gif"]');
   const link = $content.find('a[href="/wiki/File:Doomguy.gif"]');


   link.removeAttr("href"); // stops browser navigation preview
   link.removeAttr("href");


   link.on("click", function (e) {
   link.on("click", function (e) {

Revision as of 01:16, 13 March 2026

const footer = document.querySelector('#footer');
const observer = new IntersectionObserver(entries => {
    entries.forEach(entry => {
        if (entry.isIntersecting) {
            document.body.classList.add('footer-visible');
        } else {
            document.body.classList.remove('footer-visible');
        }
    });
});

observer.observe(footer);

mw.hook('wikipage.content').add(function ($content) {
  const link = $content.find('a[href="/wiki/File:Doomguy.gif"]');

  link.removeAttr("href");

  link.on("click", function (e) {
    e.preventDefault();

    let audio = document.getElementById("SickTunes");

    if (!audio) {
      audio = document.createElement("audio");
      audio.id = "SickTunes";
      audio.src = "https://okayxairen.wiki/images/e/e0/E1M1_Roland.wav";
      audio.preload = "auto";
      document.body.appendChild(audio);
    }

    if (audio.paused) {
      audio.play();
    } else {
      audio.pause();
    }
  });
});