From 9e74fef7e8ee56b763ddf7cdfc957b6e71c93472 Mon Sep 17 00:00:00 2001 From: Nico Jansen Date: Wed, 19 Jun 2024 19:00:13 +0200 Subject: [PATCH] fix(revealjs): disable animations (#333) * fix(revealjs): disable animations * Review comments --- plugins/reveal.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/plugins/reveal.js b/plugins/reveal.js index 521e8a1..20405ae 100644 --- a/plugins/reveal.js +++ b/plugins/reveal.js @@ -46,10 +46,11 @@ class Reveal { configure() { return this.page.evaluate(config => { Reveal.configure({ - controls : false, - progress : config.progress, - fragments : config.fragments, - transition: 'none' + controls : false, + progress : config.progress, + fragments : config.fragments, + transition : 'none', + autoAnimate: false, }); // This is a workaround to disable the open button of the RevealMenu plugin.