diff options
author | Thomas Endres <Thomas-Endres@gmx.de> | 2013-11-10 14:48:50 +0100 |
---|---|---|
committer | Thomas Endres <Thomas-Endres@gmx.de> | 2013-11-19 20:56:40 +0100 |
commit | 0ffbe8d09cbc48d750c102ddc6de13b07c7f8b59 (patch) | |
tree | a365f995e33b07b5239361c89a95759f56923a0b /js | |
parent | e0dccd85bedb75cff41627909ed5282150f22323 (diff) | |
download | fosdem-2018-presentation-0ffbe8d09cbc48d750c102ddc6de13b07c7f8b59.tar fosdem-2018-presentation-0ffbe8d09cbc48d750c102ddc6de13b07c7f8b59.tar.gz |
Issue #698: Non-async scripts were not executed before Reveal started
Diffstat (limited to '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 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 ); |