From: Hakim El Hattab Date: Thu, 29 Aug 2013 13:28:16 +0000 (-0400) Subject: configure notes window presentations to hide needless UI X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a0f0371fb19d7188f67fb67ea348c788f4476e7c;p=reveal.js.git configure notes window presentations to hide needless UI --- diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html index 0ef285b..7e542e4 100644 --- a/plugin/notes/notes.html +++ b/plugin/notes/notes.html @@ -239,6 +239,10 @@ currentSlide.contentWindow.Reveal.addEventListener( 'fragmentshown', synchronizeMainWindow ); currentSlide.contentWindow.Reveal.addEventListener( 'fragmenthidden', synchronizeMainWindow ); + // Reconfigure the notes window to remove needless UI + currentSlide.contentWindow.Reveal.configure({ controls: false, progress: false, overview: false }); + nextSlide.contentWindow.Reveal.configure({ controls: false, progress: false, overview: false }); + } else {