From: Thomas Endres Date: Sun, 10 Nov 2013 13:48:50 +0000 (+0100) Subject: Issue #698: Non-async scripts were not executed before Reveal started X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0ffbe8d09cbc48d750c102ddc6de13b07c7f8b59;p=reveal.js.git Issue #698: Non-async scripts were not executed before Reveal started --- 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 );