]> git.mxchange.org Git - friendica-addons.git/commitdiff
Code standards update for mathjax add-on changes (5118)
authorPascal Deklerck <pascal.deklerck@gmail.com>
Wed, 13 Jun 2018 07:06:14 +0000 (09:06 +0200)
committerPascal Deklerck <pascal.deklerck@gmail.com>
Wed, 13 Jun 2018 07:06:14 +0000 (09:06 +0200)
mathjax/mathjax.js
mathjax/mathjax.php

index 1ab5531bd4dffe5498323a230e028f5e7012806b..686f21bb5fb0ef117bcdcd23119279ac7be10771 100644 (file)
@@ -1,5 +1,5 @@
-Addon_registerHook("postprocess","mathjax_postprocess_liveupdate");
+Addon_registerHook("postprocess_liveupdate", "mathjax_postprocess_liveupdate");
 function mathjax_postprocess_liveupdate()
 {
-       MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
+       MathJax.Hub.Queue(["Typeset", MathJax.Hub]);
 }
index 37b2748c5b186564a840d9bbac2f6233b10d3c24..ebc49d988229ac1640482c38e08e9c34fe99ffe9 100644 (file)
@@ -16,20 +16,21 @@ 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');
+    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_template_vars($a, &$arr) {
+    $arr['vars']['addon_hooks'][] = "mathjax";
+}
+
 function mathjax_settings_post ($a, $post) {
     if (! local_user())
         return;