mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 19:38:20 -07:00
16 lines
252 B
JavaScript
16 lines
252 B
JavaScript
(function (globalScope) {
|
|
|
|
globalScope.AjaxApi = {
|
|
|
|
param: function(params) {
|
|
return jQuery.param(params);
|
|
},
|
|
|
|
ajax: function(request) {
|
|
|
|
return jQuery.ajax(request);
|
|
}
|
|
|
|
};
|
|
|
|
})(window); |