mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
4 lines
347 B
JavaScript
4 lines
347 B
JavaScript
![]() |
/* jQuery Tiny Pub/Sub - v0.7 - 10/27/2011
|
|||
|
* http://benalman.com/
|
|||
|
* Copyright (c) 2011 "Cowboy" Ben Alman; Licensed MIT, GPL */
|
|||
|
(function (a) { var b = a({}); a.subscribe = function () { b.on.apply(b, arguments) }, a.unsubscribe = function () { b.off.apply(b, arguments) }, a.publish = function () { b.trigger.apply(b, arguments) } })(jQuery)
|