diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2014-05-30 08:12:57 +0200 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2014-05-30 08:12:57 +0200 |
commit | 6d1a66c2bcb3e859bcf011a3af60b8196c0d4c1f (patch) | |
tree | 95ab03b15454fd2bdb98e1e10b9733e3f9379325 /js/reveal.js | |
parent | 9c96a56e3330b75ca3b3205c79b2c4c1f74edd25 (diff) | |
download | fosdem-2018-presentation-6d1a66c2bcb3e859bcf011a3af60b8196c0d4c1f.tar fosdem-2018-presentation-6d1a66c2bcb3e859bcf011a3af60b8196c0d4c1f.tar.gz |
fix search & replace error
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 2 |
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 ) { |