2012-08-30 02:48:22 +04:00
|
|
|
/* 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() {
|
2012-09-03 03:24:55 +04:00
|
|
|
//console.log("SUBSCRIBE: " + arguments[0]);
|
2012-08-30 02:48:22 +04:00
|
|
|
o.on.apply(o, arguments);
|
|
|
|
};
|
|
|
|
|
|
|
|
$.unsubscribe = function() {
|
|
|
|
o.off.apply(o, arguments);
|
|
|
|
};
|
|
|
|
|
|
|
|
$.publish = function() {
|
2012-09-03 03:24:55 +04:00
|
|
|
//console.log("PUBLISH: " + arguments[0]);
|
2012-08-30 02:48:22 +04:00
|
|
|
o.trigger.apply(o, arguments);
|
|
|
|
};
|
|
|
|
|
2012-08-31 12:45:07 +04:00
|
|
|
}(jQuery));
|
|
|
|
|
|
|
|
|