I wanna catch all events except 'reset'. I've a code like this initialized inside a View.
messagesCollection.on 'all', @_handleMessageChanges, @
Right now it works for all events. As I've mentioned above I don't need to catch in a reset event.
How can I resolve this issue? Please help us.
When using
all
, the first argument is theevent
. So, you can doSee it in action here: http://jsfiddle.net/nxs9q/1
From the docs: