Skip to content

Instantly share code, notes, and snippets.

@TexRx
Created March 10, 2012 05:44
Show Gist options
  • Save TexRx/2010435 to your computer and use it in GitHub Desktop.
Save TexRx/2010435 to your computer and use it in GitHub Desktop.
JavaScript: PubSub
/* @paul_irish Pub/Sub
Works in modern browsers + IE9
Use Modernizr ployfill for function.bind */
var o = $( {} );
$.subscribe = o.on.bind(o);
$.unsubscribe = o.off.bind(o);
$.publish = o.trigger.bind(o);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment