From de746bb64242820dc688b17f47935911ba7bfa86 Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Thu, 25 Jan 2018 09:26:10 +0100 Subject: [PATCH] reorganize config options --- README.md | 8 +++++--- js/reveal.js | 5 +++++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 94726ab..0c77d0e 100644 --- a/README.md +++ b/README.md @@ -198,9 +198,6 @@ Reveal.initialize({ // Display a presentation progress bar progress: true, - // Set default timing of 2 minutes per slide - defaultTiming: 120, - // Display the page number of the current slide slideNumber: false, @@ -259,6 +256,11 @@ Reveal.initialize({ // Use this method for navigation when auto-sliding autoSlideMethod: Reveal.navigateNext, + // Specify the average time in seconds that you think you will spend + // presenting each slide. This is used to show a pacing timer in the + // speaker view + defaultTiming: 120, + // Enable slide navigation via mouse wheel mouseWheel: false, diff --git a/js/reveal.js b/js/reveal.js index 0120f31..c9fa9f1 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -135,6 +135,11 @@ // Use this method for navigation when auto-sliding (defaults to navigateNext) autoSlideMethod: null, + // Specify the average time in seconds that you think you will spend + // presenting each slide. This is used to show a pacing timer in the + // speaker view + defaultTiming: null, + // Enable slide navigation via mouse wheel mouseWheel: false,