mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
18 lines
240 B
JavaScript
18 lines
240 B
JavaScript
define([
|
|
"../ajax"
|
|
], function( jQuery ) {
|
|
|
|
jQuery._evalUrl = function( url ) {
|
|
return jQuery.ajax({
|
|
url: url,
|
|
type: "GET",
|
|
dataType: "script",
|
|
async: false,
|
|
global: false,
|
|
"throws": true
|
|
});
|
|
};
|
|
|
|
return jQuery._evalUrl;
|
|
|
|
});
|