diff options
author | Grégoire Pineau <lyrixx@lyrixx.info> | 2015-10-05 16:39:28 +0200 |
---|---|---|
committer | Grégoire Pineau <lyrixx@lyrixx.info> | 2015-10-05 16:39:28 +0200 |
commit | 859c5feeb9f81b6b0ab724f7306305baf8808d36 (patch) | |
tree | f447c174f8d0055b9bd0d424197953f8789b9806 /default.revealjs | |
parent | cddd99ccb2aad9056b16f712b4d37a2bbecdcf46 (diff) | |
download | pandoc-859c5feeb9f81b6b0ab724f7306305baf8808d36.tar.gz |
[Reveals] Be able to change customize 'progress' and 'controls'
Diffstat (limited to 'default.revealjs')
-rw-r--r-- | default.revealjs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/default.revealjs b/default.revealjs index aeac83c4e..53d466eb8 100644 --- a/default.revealjs +++ b/default.revealjs @@ -86,8 +86,8 @@ $body$ // Full list of configuration options available here: // https://github.com/hakimel/reveal.js#configuration Reveal.initialize({ - controls: true, // Display controls in the bottom right corner - progress: true, // Display a presentation progress bar + controls: $if(controls)$$controls$$else$true$endif$, // Display controls in the bottom right corner + progress: $if(progress)$$progress$$else$true$endif$, // Display a presentation progress bar history: true, // Push each slide change to the browser history center: $if(center)$$center$$else$false$endif$, // Vertical centering of slides maxScale: $if(maxScale)$$maxScale$$else$1.5$endif$, // Bounds for smallest/largest possible content scale |