aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2014-06-25 13:56:24 +0200
committerHakim El Hattab <hakim.elhattab@gmail.com>2014-06-25 13:56:24 +0200
commit7e8fd09376a75ac793bbea4efff30d5056fea559 (patch)
tree84cadcc003168c42eb5b6c63232665ae0d25ed3a /js
parentef333300a20b7412176525e542b5fd61ef776e94 (diff)
downloadfreenode-live-2017-presentation-7e8fd09376a75ac793bbea4efff30d5056fea559.tar
freenode-live-2017-presentation-7e8fd09376a75ac793bbea4efff30d5056fea559.tar.gz
fix npe
Diffstat (limited to 'js')
-rw-r--r--js/reveal.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 2355098..edf3073 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -2618,7 +2618,7 @@
*/
function stopEmbeddedContent( slide ) {
- if( slide ) {
+ if( slide && slide.parentNode ) {
// HTML5 media elements
toArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {
if( !el.hasAttribute( 'data-ignore' ) ) {