15.02.2019, 15:06
(15.02.2019, 08:26)admin Wrote: 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:
Code:var start = localbus.start;
localbus.start = function(auth) {
console.log('started');
start.call(localbus, auth);
};
Hi admin,
I have tested your sample monitor apps and it works like a charm !
B.R,
Chouaibou.