Skip to content

Instantly share code, notes, and snippets.

@appkr
Created February 3, 2015 01:16
Show Gist options
  • Save appkr/094f82023fac0289756d to your computer and use it in GitHub Desktop.
Save appkr/094f82023fac0289756d to your computer and use it in GitHub Desktop.
jQuery PubSub (Observer Pattern)
(function($) {
var o = $({});
$.each({
trigger: 'publish',
on: 'subscribe',
off: 'unsubscribe'
}, function(key, api) {
$[api] = function() {
o[key].apply(o, arguments);
};
});
})(jQuery);
/*
$.publish("event.type");
$.subscribe("event.type", callback);
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment