Syntax fix

This commit is contained in:
Ingo Schommer 2016-04-07 17:14:31 +12:00
parent a1ea239c8f
commit 874146afda

View File

@ -33,4 +33,4 @@ function appBoot() {
// Entwine hooks are being used to set up the <Provider>.
// `window.onload` happens AFTER these Entwine hooks which means
// the store is undefined when the <Provider> is constructed.
$('body').entwine({ onadd: () => { appBoot(); } });
$('body').entwine({ onadd: () => appBoot() });