jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/require/requiretext.js

30 lines
636 B
JavaScript
Raw Normal View History

2016-05-12 19:32:12 -07:00
define(function () {
return {
load: function (url, req, load, config) {
if (url.indexOf('http') != 0 && url.indexOf('file:') != 0) {
url = config.baseUrl + url;
}
2016-05-13 11:28:05 -07:00
if (config.urlArgs) {
url += config.urlArgs(url, url);
}
2016-05-12 19:32:12 -07:00
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);
}
};
});