Skip to content

Instantly share code, notes, and snippets.

View bluehazetech's full-sized avatar

Brian Turgeon bluehazetech

View GitHub Profile
@bluehazetech
bluehazetech / javascript-jquery-pubsub
Last active December 23, 2015 06:59
JavaScript: PubSub
// Works in modern browsers + IE9, but Modernizr has a polyfill baked in for function.bind.
// Hat tip Paul Irish
var o = $( {} );
$.subscribe = o.on.bind(o);
$.unsubscribe = o.off.bind(o);
$.publish = o.trigger.bind(o);