diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2015-10-10 14:04:38 -0700 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2015-10-10 14:04:38 -0700 |
| commit | 0081fa9306e0fb4f923020596d23c642aac67945 (patch) | |
| tree | 276f68b03b35d008d3135a6f01a857fe129ec954 | |
| parent | f32abb9617f8b1cc8defe493b94ccf4d4e79600b (diff) | |
| parent | 859c5feeb9f81b6b0ab724f7306305baf8808d36 (diff) | |
| download | pandoc-0081fa9306e0fb4f923020596d23c642aac67945.tar.gz | |
Merge pull request #127 from lyrixx/patch-1
[Reveals] Be able to change customize 'progress' and 'controls'
| -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 |
