diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2013-08-12 09:27:23 -0400 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2013-08-12 09:27:23 -0400 |
commit | 9984cb1f2189b489afd7b05077c319fd123365af (patch) | |
tree | 491a0a74d7947349d338b3c70827759f4172a200 /plugin/math/math.js | |
parent | a6af097051a8e6d0134dac6082bc77b94122fc23 (diff) | |
download | fosdem-2018-presentation-9984cb1f2189b489afd7b05077c319fd123365af.tar fosdem-2018-presentation-9984cb1f2189b489afd7b05077c319fd123365af.tar.gz |
limit scope of mathjax rerender #531
Diffstat (limited to 'plugin/math/math.js')
-rwxr-xr-x | plugin/math/math.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/math/math.js b/plugin/math/math.js index 3efe321..30dd38c 100755 --- a/plugin/math/math.js +++ b/plugin/math/math.js @@ -29,7 +29,7 @@ }); Reveal.addEventListener( 'slidechanged', function( event ) { - MathJax.Hub.Rerender(); + MathJax.Hub.Update( event.currentSlide ); } ); } |