From 0ffbe8d09cbc48d750c102ddc6de13b07c7f8b59 Mon Sep 17 00:00:00 2001
From: Thomas Endres <Thomas-Endres@gmx.de>
Date: Sun, 10 Nov 2013 14:48:50 +0100
Subject: [PATCH] Issue #698: Non-async scripts were not executed before Reveal
 started

---
 js/reveal.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/js/reveal.js b/js/reveal.js
index 7b81e5c..410b390 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -284,7 +284,7 @@ var Reveal = (function(){
 		}
 
 		if( scripts.length ) {
-			head.ready( proceed );
+            scripts.push(proceed);
 
 			// Load synchronous scripts
 			head.js.apply( null, scripts );
-- 
GitLab