Difference between revisions of "MediaWiki:Common.js"

From CUGC Wiki
(Using $content doesn't seem to work.)
(Actually call callback to render MathJax.)
Line 3: Line 3:
 
// MathJax typesetting in edit previews
 
// MathJax typesetting in edit previews
 
mw.hook('wikipage.content').add(function () {
 
mw.hook('wikipage.content').add(function () {
   MathJax.Hub.Queue(["Typeset", MathJax.Hub, "wikiPreview"]);
+
   MathJax.Hub.Queue(["Typeset", MathJax.Hub, "wikiPreview"]).execute();
 
});
 
});

Revision as of 15:53, 12 March 2019

/* Any JavaScript here will be loaded for all users on every page load. */

// MathJax typesetting in edit previews
mw.hook('wikipage.content').add(function () {
  MathJax.Hub.Queue(["Typeset", MathJax.Hub, "wikiPreview"]).execute();
});