aboutsummaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js6
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();
}