5118 Implement MathJax JS hook to update contents after live update
authorPascal Deklerck <pascal.deklerck@gmail.com>
Thu, 7 Jun 2018 20:37:40 +0000 (22:37 +0200)
committerPascal Deklerck <pascal.deklerck@gmail.com>
Thu, 7 Jun 2018 20:37:40 +0000 (22:37 +0200)
mathjax/mathjax.js [new file with mode: 0644]
mathjax/mathjax.php

diff --git a/mathjax/mathjax.js b/mathjax/mathjax.js
new file mode 100644 (file)
index 0000000..1ab5531
--- /dev/null
@@ -0,0 +1,5 @@
+Addon_registerHook("postprocess","mathjax_postprocess_liveupdate");
+function mathjax_postprocess_liveupdate()
+{
+       MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
+}
index 7d1a813..37b2748 100644 (file)
@@ -16,12 +16,19 @@ function mathjax_install() {
     Addon::registerHook('page_header', 'addon/mathjax/mathjax.php', 'mathjax_page_header');
     Addon::registerHook('addon_settings', 'addon/mathjax/mathjax.php', 'mathjax_settings');
     Addon::registerHook('addon_settings_post', 'addon/mathjax/mathjax.php', 'mathjax_settings_post');
+    Addon::registerHook('template_vars','addon/mathjax/mathjax.php', 'mathjax_template_vars');
     logger('installed js_math addon');
 }
+
+function mathjax_template_vars($a, &$arr) {
+    $arr['vars']['addon_hooks'][] = "mathjax";
+}
+
 function mathjax_uninstall() {
     Addon::unregisterHook('page_header', 'addon/mathjax/mathjax.php', 'mathjax_page_header');
     Addon::unregisterHook('addon_settings', 'addon/mathjax/mathjax.php', 'mathjax_settings');
     Addon::unregisterHook('addon_settings_post', 'addon/mathjax/mathjax.php', 'mathjax_settings_post');
+    Addon::unregisterHook('template_vars','addon/mathjax/mathjax.php', 'mathjax_template_vars');
 }
 function mathjax_settings_post ($a, $post) {
     if (! local_user())