Skip to content

Instantly share code, notes, and snippets.

@Bondifrench
Created February 21, 2014 04:09
Show Gist options
  • Save Bondifrench/9128572 to your computer and use it in GitHub Desktop.
Save Bondifrench/9128572 to your computer and use it in GitHub Desktop.
Javascript: jQuery PubSub
(function ($) {
var o = $({
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