Skip to content

Commit

Permalink
fix(revealjs): disable animations (#333)
Browse files Browse the repository at this point in the history
* fix(revealjs): disable animations

* Review comments
  • Loading branch information
nicojs committed Jun 19, 2024
1 parent 83771f9 commit 9e74fef
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions plugins/reveal.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 9e74fef

Please sign in to comment.