diff --git a/public/js/slide.js b/public/js/slide.js index 4c2f1ff..074e4df 100644 --- a/public/js/slide.js +++ b/public/js/slide.js @@ -62,6 +62,10 @@ function renderSlide(event) { markdown.attr('data-rendered', 'true'); document.title = title; Reveal.layout(); + // force browser redraw + setTimeout(function () { + markdown.hide().show(0); + }, 0); } }