MediaWiki:Common.js

From CUGC Wiki
Revision as of 16:40, 12 March 2019 by TW466 (talk | contribs) (Use MutationObserver to detect when $content is added to the DOM.)
/* Any JavaScript here will be loaded for all users on every page load. */

mw.hook('wikipage.content').add(function ($content) {
  var observer = new MutationObserver(function(mutations) {
    if (document.contains($content)) {
      console.log("It's in the DOM!");
      // using $content directly throws errors
      MathJax.Hub.Queue(["Typeset", MathJax.Hub, document.getElementById("wikiPreview")]).execute();
      observer.disconnect();
    } else {
      console.log("Still waiting");
    }
  });
  observer.observe(document, {attributes: false, childList: true, characterData: false, subtree: true});
});