aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorThomas Endres <Thomas-Endres@gmx.de>2013-11-10 14:48:50 +0100
committerThomas Endres <Thomas-Endres@gmx.de>2013-11-19 20:56:40 +0100
commit0ffbe8d09cbc48d750c102ddc6de13b07c7f8b59 (patch)
treea365f995e33b07b5239361c89a95759f56923a0b /js
parente0dccd85bedb75cff41627909ed5282150f22323 (diff)
downloadfosdem-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.js2
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 );