Upgrade to MathJax 3

This commit is contained in:
cuom1999 2022-11-13 21:42:27 -06:00
parent 6bd15ded9c
commit 710fae5fe3
6 changed files with 31 additions and 37 deletions

View file

@ -55,10 +55,7 @@
function update_math($comment) {
if ('MathJax' in window) {
var $body = $comment.find('.comment-body');
MathJax.Hub.Queue(['Typeset', MathJax.Hub, $body[0]], function () {
$body.find('.tex-image').hide();
$body.find('.tex-text').show();
});
MathJax.typeset($body[0]);
}
}
@ -168,7 +165,7 @@
window.DjangoPagedown.createEditor($wmd.get(0));
if ('MathJax' in window) {
var preview = $('.featherlight div.wmd-preview')[0];
MathJax.Hub.Queue(['Typeset', MathJax.Hub, preview]);
MathJax.typeset(preview);
}
}
}