From 12d4fd67b65afc2725e9f48d2ce624d1d70f67fb Mon Sep 17 00:00:00 2001 From: Simon Eisenmann Date: Mon, 2 Jun 2014 15:44:10 +0200 Subject: [PATCH] Defer bootstrap also when loading no translation to make sure plugins are loaded first. --- static/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/app.js b/static/js/app.js index 02d5122c..4bfa04da 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -179,7 +179,7 @@ define([ }); } else { // No need to load english as this is built in. - bootstrap(); + _.defer(bootstrap); } });