diff options
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 12b033d..11f5c43 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -61,7 +61,7 @@ var Reveal = (function(){ // Flags if the presentation is running in an embedded mode, // i.e. contained within a limited portion of the screen - embed: false, + embedded: false, // Number of milliseconds between automatically proceeding to the // next slide, disabled when set to 0, this value can be overwritten @@ -2377,7 +2377,7 @@ var Reveal = (function(){ // If we're embedded, only block touch events if they have // triggered an action - if( config.embed ) { + if( config.embedded ) { if( touch.captured || isVerticalSlide( currentSlide ) ) { event.preventDefault(); } |