Jump to content

MediaWiki:Main Page.js: Difference between revisions

From Ditzy Wiki
No edit summary
No edit summary
Line 13: Line 13:


mw.hook('wikipage.content').add(function ($content) {
mw.hook('wikipage.content').add(function ($content) {
   $content.on('click', 'a[href="/wiki/File:Doomguy.gif"]', function (e) {
   const link = $content.find('a[href="/wiki/File:Doomguy.gif"]');
 
  link.removeAttr("href"); // stops browser navigation preview
 
  link.on("click", function (e) {
     e.preventDefault();
     e.preventDefault();
    e.stopPropagation();
    e.stopImmediatePropagation();


     let audio = document.getElementById("SickTunes");
     let audio = document.getElementById("SickTunes");
Line 33: Line 35:
       audio.pause();
       audio.pause();
     }
     }
    return false;
   });
   });
});
});

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"); // stops browser navigation preview

  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();
    }
  });
});