aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2020-04-27 11:44:33 +0200
committerHakim El Hattab <hakim.elhattab@gmail.com>2020-04-27 11:44:33 +0200
commit48ebc3b7e022d4d4204c2bc1d0d20c4e0504b3e4 (patch)
treece9f05cce0f15da77cfa12ce1a353e152c91f902 /js
parent0a1bcdf999d10d20ecf189432c4ae920f89b7f0b (diff)
downloadfosdem-2021-minimalism-presentation-48ebc3b7e022d4d4204c2bc1d0d20c4e0504b3e4.tar
fosdem-2021-minimalism-presentation-48ebc3b7e022d4d4204c2bc1d0d20c4e0504b3e4.tar.gz
remove unused dependency, disable inconsistent 'slidetransitionend' test
Diffstat (limited to 'js')
-rw-r--r--js/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/index.js b/js/index.js
index 50e0647..ff6f633 100644
--- a/js/index.js
+++ b/js/index.js
@@ -10,7 +10,7 @@ import Deck from './reveal.js'
* // reveal.js is ready
* });
*/
-var Reveal = Deck;
+let Reveal = Deck;
/**
@@ -42,8 +42,8 @@ Reveal.initialize = options => {
/**
* The pre 4.0 API let you add event listener before
* initializing. We maintain the same behavior by
- * queuing up early API calls and invoking all of them
- * when Reveal.initialize is called.
+ * queuing up premature API calls and invoking all
+ * of them when Reveal.initialize is called.
*/
[ 'on', 'off', 'addEventListener', 'removeEventListener', 'registerPlugin' ].forEach( method => {
Reveal[method] = ( ...args ) => {