diff options
author | Hakim El Hattab | 2013-08-10 14:30:24 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-08-10 14:30:24 -0400 |
commit | 785bee596b7bc444169f11bd36a4eb12af0c21eb (patch) | |
tree | 33bede3ec2fa7265750f42fbd1af0fd04e45e4dd /js/reveal.js | |
parent | 0add83e9ed2dfe1299e38b7654f8928909d92e69 (diff) |
add embed option
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index 8f7eb70..12b033d 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -59,6 +59,10 @@ var Reveal = (function(){ // Turns fragments on and off globally fragments: true, + // Flags if the presentation is running in an embedded mode, + // i.e. contained within a limited portion of the screen + embed: false, + // Number of milliseconds between automatically proceeding to the // next slide, disabled when set to 0, this value can be overwritten // by using a data-autoslide attribute on your slides @@ -2371,7 +2375,18 @@ var Reveal = (function(){ navigateDown(); } - event.preventDefault(); + // If we're embedded, only block touch events if they have + // triggered an action + if( config.embed ) { + if( touch.captured || isVerticalSlide( currentSlide ) ) { + event.preventDefault(); + } + } + // Not embedded? Block them all to avoid needless tossing + // around of the viewport in iOS + else { + event.preventDefault(); + } } } |