Open main menu

CUGC Wiki β

MediaWiki:Common.js

Revision as of 17:55, 12 March 2019 by TW466 (talk | contribs) (Remove debugging statements.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
/* Any JavaScript here will be loaded for all users on every page load. */

function waitForMathJax($content) {
  if (typeof MathJax === 'undefined') {
    setTimeout(function () { waitForMathJax($content); }, 1000);
  } else {
    MathJax.Hub.Queue(["Typeset", MathJax.Hub, $content[0]]).execute();
  }
}

mw.hook('wikipage.content').add(waitForMathJax);