jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/require/requiretext.js
2016-08-28 14:59:14 -04:00

30 lines
607 B
JavaScript

define(function () {
return {
load: function (url, req, load, config) {
if (url.indexOf('://') == -1) {
url = config.baseUrl + url;
}
if (config.urlArgs) {
url += config.urlArgs(url, url);
}
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.onload = function (e) {
load(this.response);
};
xhr.send();
},
normalize: function (name, normalize) {
return normalize(name);
}
};
});