Skip to content

Instantly share code, notes, and snippets.

@zealoushacker
Forked from addyosmani/pubsub.md
Last active August 29, 2015 14:14
Show Gist options
  • Save zealoushacker/2c16159ea534402f34f1 to your computer and use it in GitHub Desktop.
Save zealoushacker/2c16159ea534402f34f1 to your computer and use it in GitHub Desktop.

Ben Alman's really tiny pub/sub with my 1.7 updates from https://gist.github.com/1319216. The link to his gist with lots of useful comments is here: https://gist.github.com/661855

/* jQuery Tiny Pub/Sub - v0.7 - 10/27/2011
 * http://benalman.com/
 * Copyright (c) 2011 "Cowboy" Ben Alman; Licensed MIT, GPL */

(function($) {

  var o = $({});

  $.subscribe = function() {
    o.on.apply(o, arguments);
  };

  $.unsubscribe = function() {
    o.off.apply(o, arguments);
  };

  $.publish = function() {
    o.trigger.apply(o, arguments);
  };

}(jQuery));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment