backbone-eventbroker
backbone-eventbroker copied to clipboard
An EventBroker for Backbone
In the readme you show an example of EventBroker like this: ``` var Users = Backbone.Collection.extend{{ initialize: function(){ // subscribe to an event ... Backbone.EventBroker.on('users:add', this.add, this); }, add: function(user)...
We recently switched from using the register function to listenTo and we do miss having the ability to apply a json object to the method rather than having each line...
I am exploring Backbone frameworks, and I saw something in Giraffe that looks interesting to me: ``` 'someHashLocation/:andItsParams': 'some:appEvent' ``` Could events coming from URL changes automatically be translated into...