aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2014-05-30 08:12:57 +0200
committerHakim El Hattab <hakim.elhattab@gmail.com>2014-05-30 08:12:57 +0200
commit6d1a66c2bcb3e859bcf011a3af60b8196c0d4c1f (patch)
tree95ab03b15454fd2bdb98e1e10b9733e3f9379325 /js
parent9c96a56e3330b75ca3b3205c79b2c4c1f74edd25 (diff)
downloadfreenode-live-2017-presentation-6d1a66c2bcb3e859bcf011a3af60b8196c0d4c1f.tar
freenode-live-2017-presentation-6d1a66c2bcb3e859bcf011a3af60b8196c0d4c1f.tar.gz
fix search & replace error
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 927670c..1990e8f 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -2364,7 +2364,7 @@
}
// Videos
else if ( backgroundVideo ) {
- var video = dom.wrapper.createElement( 'video' );
+ var video = document.createElement( 'video' );
// Support comma separated lists of video sources
backgroundVideo.split( ',' ).forEach( function( source ) {