backbone.js - working with the event dispatcher var dispatcher = _.clone(Backbone.Events)
In backbone.js documentation it says: To make a handy event dispatcher that can coordinate events among different areas of your application: var dispatcher = _.clone(Backbone.Events) Can anyone explain how to implement the dispatcher to communicate from one view to another? Where do I have to place the code in my app? Paul Hoenecke Here is a good article about using an event aggregator . Can anyone explain how to implement the dispatcher to communicate from one view to another? Where do I have to place the code in my app? You will probably have some kind of App Controller object, which will