1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

move completely to fetch

This commit is contained in:
Luke Pulverenti 2015-11-28 03:07:44 -05:00
parent ee899a7332
commit 9932bc3eb5
168 changed files with 948 additions and 945 deletions

View file

@ -38,7 +38,7 @@
options.ProviderName = provider;
}
ApiClient.getAvailableRemoteImages(options).done(function (result) {
ApiClient.getAvailableRemoteImages(options).then(function (result) {
renderRemoteImages(page, result, browsableImageType, options.startIndex, options.limit);
@ -125,7 +125,7 @@
Dashboard.showLoadingMsg();
ApiClient.downloadRemoteImage(options).done(function () {
ApiClient.downloadRemoteImage(options).then(function () {
hasChanges = true;
var dlg = $(page).parents('paper-dialog')[0];
@ -260,13 +260,12 @@
Dashboard.showLoadingMsg();
HttpClient.send({
var xhr = new XMLHttpRequest();
xhr.open('GET', 'components/imagedownloader/imagedownloader.template.html', true);
type: 'GET',
url: 'components/imagedownloader/imagedownloader.template.html'
}).done(function (template) {
xhr.onload = function (e) {
var template = this.response;
currentItemId = itemId;
currentItemType = itemType;
@ -299,7 +298,9 @@
});
reloadBrowsableImages(editorContent);
});
}
xhr.send();
}
function onDialogClosed() {