Skip to content

Instantly share code, notes, and snippets.

@uicoded
Created August 19, 2013 18:11
Show Gist options
  • Save uicoded/6272254 to your computer and use it in GitHub Desktop.
Save uicoded/6272254 to your computer and use it in GitHub Desktop.
jQuery PubSub
(function($) {
var o = $( {} );
$.each({
on: 'subscribe',
trigger: 'publish',
off: 'unsubscribe'
}, function(key, api) {
$[api] = function() {
o[key].apply(o, aguments);
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment