diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2016-10-11 11:03:49 +0200 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2017-05-16 09:45:37 +0200 |
commit | 2cc5ae946b40f98a7a1f1a883d995615f69681e2 (patch) | |
tree | 30a2a4abe26e893162acf6363e943d4cab1f394f /js | |
parent | 44a355b6e969d6a1cfbf23cb44079104d4dc6945 (diff) | |
download | perl-software-in-gnu-guix-2cc5ae946b40f98a7a1f1a883d995615f69681e2.tar perl-software-in-gnu-guix-2cc5ae946b40f98a7a1f1a883d995615f69681e2.tar.gz |
new, fixed, speaker notes layout
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/js/reveal.js b/js/reveal.js index 594093b..02dbebe 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -56,8 +56,8 @@ controlsLayout: 'bottom-right', // Specifies the display rules for backwards navigation arrows; - // "deemphasized", "hidden" or "visible" - controlsBackArrows: 'deemphasized', + // "faded", "hidden" or "visible" + controlsBackArrows: 'faded', // Display a presentation progress bar progress: true, @@ -106,7 +106,7 @@ // key is pressed help: true, - // Flags if it should be possible to pause the presentation (blackout) + // Flags if it should be possible to pause t.spehe presentation (blackout) pause: true, // Flags if speaker notes should be visible to all viewers @@ -1032,11 +1032,11 @@ } if( config.showNotes ) { - dom.speakerNotes.classList.add( 'visible' ); + dom.wrapper.classList.add( 'show-notes' ); dom.speakerNotes.setAttribute( 'data-layout', typeof config.showNotes === 'string' ? config.showNotes : 'inline' ); } else { - dom.speakerNotes.classList.remove( 'visible' ); + dom.wrapper.classList.remove( 'show-notes' ); } if( config.mouseWheel ) { |