diff options
author | Hakim El Hattab | 2015-02-03 11:56:54 +0100 |
---|---|---|
committer | Hakim El Hattab | 2015-02-03 11:56:54 +0100 |
commit | a4852c7cb2a5792d0ead3ee59435371225755dea (patch) | |
tree | b533accf546f9733f0e341000b542df7b6ccf43f /js | |
parent | 1c8a6e47a6374332caeb62ae84ca109ec59be54a (diff) |
prevent iframes from offsetting presentation
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js index dbe3679..fdf3204 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -384,6 +384,9 @@ // Listen to messages posted to this window setupPostMessage(); + // Prevent iframes from scrolling the slides out of view + setupIframeScrollPrevention(); + // Resets all vertical slides so that only the first is visible resetVerticalSlides(); @@ -568,6 +571,26 @@ } /** + * This is an unfortunate necessity. Iframes can trigger the + * parent window to scroll, for example by focusing an input. + * This scrolling can not be prevented by hiding overflow in + * CSS so we have to resort to repeatedly checking if the + * browser has decided to offset our slides :( + */ + function setupIframeScrollPrevention() { + + if( dom.slides.querySelector( 'iframe' ) ) { + setInterval( function() { + if( dom.wrapper.scrollTop !== 0 || dom.wrapper.scrollLeft !== 0 ) { + dom.wrapper.scrollTop = 0; + dom.wrapper.scrollLeft = 0; + } + }, 500 ); + } + + } + + /** * Creates an HTML element and returns a reference to it. * If the element already exists the existing instance will * be returned. |