Skip to content

Instantly share code, notes, and snippets.

@michaelorionmcmanus
Created December 5, 2012 00:39
Show Gist options
  • Save michaelorionmcmanus/4210750 to your computer and use it in GitHub Desktop.
Save michaelorionmcmanus/4210750 to your computer and use it in GitHub Desktop.
Event singleton
define([
'underscore',
'backbone'
],
// Event Manager
function(_, Backbone) {
var vent = _.extend({}, Backbone.Events);
return {
getVent: function () { return vent; }
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment