From 9984cb1f2189b489afd7b05077c319fd123365af Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Mon, 12 Aug 2013 09:27:23 -0400 Subject: [PATCH] limit scope of mathjax rerender #531 --- plugin/math/math.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } ); }