From 874146afda458c2fe67ae124e0369086ee7bc4fb Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Thu, 7 Apr 2016 17:14:31 +1200 Subject: [PATCH] Syntax fix --- admin/javascript/src/boot/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/javascript/src/boot/index.js b/admin/javascript/src/boot/index.js index 863bdb58a..89da211d1 100644 --- a/admin/javascript/src/boot/index.js +++ b/admin/javascript/src/boot/index.js @@ -33,4 +33,4 @@ function appBoot() { // Entwine hooks are being used to set up the . // `window.onload` happens AFTER these Entwine hooks which means // the store is undefined when the is constructed. -$('body').entwine({ onadd: () => { appBoot(); } }); +$('body').entwine({ onadd: () => appBoot() });