From 7532ca53d951cfab7054409ef81d6557e26b2e69 Mon Sep 17 00:00:00 2001 From: Philipp A Date: Fri, 20 Oct 2017 08:31:22 +0200 Subject: [PATCH] Load scripts synchronously --- srcjs/output_binding_html.js | 1 + 1 file changed, 1 insertion(+) diff --git a/srcjs/output_binding_html.js b/srcjs/output_binding_html.js index e1fff2408..6d08faecb 100644 --- a/srcjs/output_binding_html.js +++ b/srcjs/output_binding_html.js @@ -105,6 +105,7 @@ function renderDependency(dep) { }); // avoid jQuery’s magic eval() scripts.forEach(function(e) { + e[0].async = false; document.head.appendChild(e[0]); }); }