diff options
author | Hakim El Hattab | 2013-10-28 08:45:14 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-10-28 08:45:14 -0400 |
commit | 8cb3c279b0beac5de1ef9f5bc1fdbadfe1187002 (patch) | |
tree | 3108b696df5e5032688f34bac6194f858a034f4b /js/reveal.js | |
parent | 82d2ae654d0fbde915dc6481631a8da867eaa994 (diff) |
don't autoplay videos in notes window #624
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index cc93aa8..e7debb5 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -2009,7 +2009,7 @@ var Reveal = (function(){ */ function startEmbeddedContent( slide ) { - if( slide ) { + if( slide && !isSpeakerNotes() ) { // HTML5 media elements toArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) { if( el.hasAttribute( 'data-autoplay' ) ) { @@ -2062,6 +2062,16 @@ var Reveal = (function(){ } /** + * Checks if this presentation is running inside of the + * speaker notes window. + */ + function isSpeakerNotes() { + + return !!window.location.search.match( /receiver/gi ); + + } + + /** * Reads the current URL (hash) and navigates accordingly. */ function readURL() { |