mirror of
https://github.com/szimek/sharedrop.git
synced 2026-06-16 21:10:54 +08:00
20 lines
389 B
JavaScript
20 lines
389 B
JavaScript
/*! Tiny Pub/Sub - v0.7.0 - 2013-01-29
|
|
* https://github.com/cowboy/jquery-tiny-pubsub
|
|
* Copyright (c) 2013 "Cowboy" Ben Alman; Licensed MIT */
|
|
(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)); |