Skip to content

Commit

Permalink
fix(revealjs): disable animations
Browse files Browse the repository at this point in the history
  • Loading branch information
nicojs authored Jun 19, 2024
1 parent 83771f9 commit df59ed2
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 df59ed2

Please sign in to comment.