Skip to content

Instantly share code, notes, and snippets.

@davemfletcher
Created February 24, 2013 21:16
Show Gist options
  • Select an option

  • Save davemfletcher/5025665 to your computer and use it in GitHub Desktop.

Select an option

Save davemfletcher/5025665 to your computer and use it in GitHub Desktop.
Javascript: sexy pubsub
var o = $( {} );
$.subscribe = o.on.bind(o);
$.unscribe = 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