diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2013-08-29 09:28:16 -0400 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2013-08-29 09:28:38 -0400 |
commit | a0f0371fb19d7188f67fb67ea348c788f4476e7c (patch) | |
tree | 21e7672279c403415f037f2c53307d213eef408c /plugin | |
parent | 8a7618793ad1cd22d9e23221422cd7e44968956c (diff) | |
download | fosdem-2018-presentation-a0f0371fb19d7188f67fb67ea348c788f4476e7c.tar fosdem-2018-presentation-a0f0371fb19d7188f67fb67ea348c788f4476e7c.tar.gz |
configure notes window presentations to hide needless UI
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/notes/notes.html | 4 |
1 files changed, 4 insertions, 0 deletions
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 { |