mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -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);
|