I am using reactor http://getreactor.xtify.com/ on a backbone application and trying to build a custom inbox box. I use auto-run="false" config param. Then I define a function for the onBeforeMessage
Reactor.onBeforeMessage(function(message){
console.log('new Message');
});
This function most of the times is been called but some other not. First question why does the onBeforeMessage is triggered although I specify auto-run="false" ? Second question why does the onBeforeMessage is not always triggered ?