From 315d0664bf30a53a6524b837f1cd1edcb796e3b1 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Wed, 19 Sep 2018 21:20:49 +0200 Subject: [PATCH] Optimize the configuration for online viewing and printing IMO fragments are great for the presentation, but it can be annoying to have to click through them when viewing the slides. --- index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index ca8306d..8098faf 100644 --- a/index.html +++ b/index.html @@ -756,8 +756,12 @@ slideNumber: true, history: true, width: 1080, - height: 720 + height: 720, + // Disable all fragments for normal viewing. They can be enabled for + // the presentation with ?fragments=true (URL parameter): + fragments: false }); + Reveal.configure({ pdfMaxPagesPerSlide: 1 });