Skip to content

Instantly share code, notes, and snippets.

@zwang008
Forked from yakcode/gist:4187044
Last active August 29, 2015 14:01
Show Gist options
  • Select an option

  • Save zwang008/0afa35c9269540002f0f to your computer and use it in GitHub Desktop.

Select an option

Save zwang008/0afa35c9269540002f0f to your computer and use it in GitHub Desktop.
JavaScript: JQuery PubSub
//Jquery version of using pubsub
(function($) {
var o = $( {} );
$.each({
on: 'subscribe',
trigger: 'publish',
off: 'unsubscribe'
}, function ( key, api ) {
$[api] = function() {
o[key].apply( o, arguments );
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment