diff options
author | Hakim El Hattab | 2013-12-21 17:27:33 +0100 |
---|---|---|
committer | Hakim El Hattab | 2013-12-21 17:27:33 +0100 |
commit | 137ddf54722464fad6b726e21b98cfc0580050ec (patch) | |
tree | 61733634c7305056a8197d406b45ba0221f11234 /js/reveal.js | |
parent | 522632188587dc739ced875cf1195e5664cfb355 (diff) |
isSliding > isAutoSliding
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/reveal.js b/js/reveal.js index 86eb825..b868d13 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1469,7 +1469,7 @@ var Reveal = (function(){ /** * Checks if the auto slide mode is currently on. */ - function isSliding() { + function isAutoSliding() { return !autoSlidePaused; @@ -3340,7 +3340,7 @@ var Reveal = (function(){ // State checks isOverview: isOverview, isPaused: isPaused, - isSliding: isSliding, + isAutoSliding: isAutoSliding, // Adds or removes all internal event listeners (such as keyboard) addEventListeners: addEventListeners, |