Skip to content

Instantly share code, notes, and snippets.

@Doogie04
Doogie04 / 1.js
Created August 1, 2012 21:28 — forked from mxriverlynn/1.js
revisiting event aggregator
MyApp = {};
MyApp.vent = _.extend({}, Backbone.Events);
MyApp.vent.on("some:event", function(){
//do stuff common to ALL events
//usually you won't have logic here
});
var ObservingModel = Backbone.Model.extend({