diff options
author | Hakim El Hattab | 2013-08-10 14:38:42 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-08-10 14:38:42 -0400 |
commit | 81f762080b289a877806f6d5e6580ef90b638e08 (patch) | |
tree | fe35086391196bfaae5b28bdf8cb98061923c734 /js/reveal.js | |
parent | 785bee596b7bc444169f11bd36a4eb12af0c21eb (diff) |
rename embed > embedded to signal that it's a state and not an action
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(); } |