5118 Implement MathJax JS hook to update contents after live update

This commit is contained in:
Pascal Deklerck 2018-06-07 22:37:40 +02:00
parent 3540d3d2d6
commit b5fe8d61dd
2 changed files with 12 additions and 0 deletions

5
mathjax/mathjax.js Normal file
View file

@ -0,0 +1,5 @@
Addon_registerHook("postprocess","mathjax_postprocess_liveupdate");
function mathjax_postprocess_liveupdate()
{
MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
}