diff options
author | Hakim El Hattab | 2012-10-29 08:27:20 -0400 |
---|---|---|
committer | Hakim El Hattab | 2012-10-29 08:27:20 -0400 |
commit | f51067b00e8099bb576858e70db6e2fc44ce3d61 (patch) | |
tree | e531dbdc93d536e9fe87e672e9713c109ba11cf6 /js/reveal.js | |
parent | 5c5b3d34d9031f08fb6b8a8e16345c36e2891c9d (diff) |
fixed issue with dependency loader failing when there were 0 async scripts (#214)
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/js/reveal.js b/js/reveal.js index 2e3ee39..d92ee76 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -231,8 +231,10 @@ var Reveal = (function(){ // Called once synchronous scritps finish loading function proceed() { - // Load asynchronous scripts - head.js.apply( null, scriptsAsync ); + if( scriptsAsync.length ) { + // Load asynchronous scripts + head.js.apply( null, scriptsAsync ); + } start(); } |