Skip to content

Instantly share code, notes, and snippets.

@grafikimon
Created March 6, 2012 22:07
Show Gist options
  • Save grafikimon/1989310 to your computer and use it in GitHub Desktop.
Save grafikimon/1989310 to your computer and use it in GitHub Desktop.
JavaScript: Sexy PubSub
// Works in modern browsers + ie9, works with modernizer
var o = jQuery({});
jQuery.subscribe = o.on.bind(o);
jQuery.unsubscribe = o.off.bind(o);
jQuery.publish = o.trigger.bind(o);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment