15.02.2019, 08:26
Here's a small sample app for monitoring using localbus.
localbus does not provide start/load events, but you can override start function before calling init like this:
localbus does not provide start/load events, but you can override start function before calling init like this:
Code:
var start = localbus.start;
localbus.start = function(auth) {
console.log('started');
start.call(localbus, auth);
};