I'm have a basic Marionette app that looks like:
var App = new Marionette.Application();
App.on('initialize:after', function () {
console.log('init');
});
App.start();
When I run this nothing gets printed to the console. However, if I add
App.on('start', function () {
console.log('start');
});
then it prints start
. Does anyone know how to get the former to work?
Which version of marionette are you using?
initialize:after
has been renamed to start
after version 1.0.0. See the changelog.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With