Skip to content

Instantly share code, notes, and snippets.

@addyosmani
Forked from cowboy/HEY-YOU.md
Created November 4, 2010 19:34

Revisions

  1. @cowboy cowboy revised this gist Nov 4, 2010. 1 changed file with 5 additions and 5 deletions.
    10 changes: 5 additions & 5 deletions jquery.ba-tinypubsub.js
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    /*!
    * jQuery Tiny Pub/Sub - v0.2pre - 11/3/2010
    * jQuery Tiny Pub/Sub - v0.3pre - 11/4/2010
    * http://benalman.com/
    *
    * Copyright (c) 2010 "Cowboy" Ben Alman
    @@ -9,18 +9,18 @@

    (function($){

    var w = $(window);
    var o = $({});

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

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

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

    })(jQuery);
  2. @cowboy cowboy revised this gist Nov 3, 2010. 1 changed file with 5 additions and 5 deletions.
    10 changes: 5 additions & 5 deletions jquery.ba-tinypubsub.js
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    /*!
    * jQuery Tiny Pub/Sub - v0.1pre - 11/3/2010
    * jQuery Tiny Pub/Sub - v0.2pre - 11/3/2010
    * http://benalman.com/
    *
    * Copyright (c) 2010 "Cowboy" Ben Alman
    @@ -15,12 +15,12 @@
    w.bind.apply( w, arguments );
    };

    $.publish = function(){
    w.trigger.apply( w, arguments );
    $.unsubscribe = function(){
    w.unbind.apply( w, arguments );
    };

    $.unpublish = function(){
    w.unbind.apply( w, arguments );
    $.publish = function(){
    w.trigger.apply( w, arguments );
    };

    })(jQuery);
  3. @cowboy cowboy created this gist Nov 3, 2010.
    26 changes: 26 additions & 0 deletions jquery.ba-tinypubsub.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,26 @@
    /*!
    * jQuery Tiny Pub/Sub - v0.1pre - 11/3/2010
    * http://benalman.com/
    *
    * Copyright (c) 2010 "Cowboy" Ben Alman
    * Dual licensed under the MIT and GPL licenses.
    * http://benalman.com/about/license/
    */

    (function($){

    var w = $(window);

    $.subscribe = function(){
    w.bind.apply( w, arguments );
    };

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

    $.unpublish = function(){
    w.unbind.apply( w, arguments );
    };

    })(jQuery);