Skip to content

Instantly share code, notes, and snippets.

@plukevdh
Created October 21, 2011 00:10
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save plukevdh/1302766 to your computer and use it in GitHub Desktop.
Save plukevdh/1302766 to your computer and use it in GitHub Desktop.
Faux pubsub. Could also use jQuery event binding if you rather.
crunch.pubsub = _.extend({}, Backbone.Events);
// Hide backbone implementation by aliasing
crunch.pubsub.publish = crunch.pubsub.trigger;
crunch.pubsub.subscribe = crunch.pubsub.bind;
crunch.pubsub.unsubscribe = crunch.pubsub.unbind;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment