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

switch to Promise.all

This commit is contained in:
Luke Pulverenti 2015-11-28 03:22:48 -05:00
parent 9932bc3eb5
commit f65465a5ae
25 changed files with 60 additions and 80 deletions

View file

@ -32,12 +32,12 @@
var promise3 = ApiClient.getJSON(ApiClient.getUrl("Notifications/Types"));
var promise4 = ApiClient.getJSON(ApiClient.getUrl("Notifications/Services"));
$.when(promise1, promise2, promise3, promise4).then(function (response1, response2, response3, response4) {
Promise.all([promise1, promise2, promise3, promise4]).then(function (responses) {
var users = response1[0];
var notificationOptions = response2[0];
var types = response3[0];
var services = response4[0];
var users = responses[0];
var notificationOptions = responses[1];
var types = responses[2];
var services = responses[3];
var notificationConfig = notificationOptions.Options.filter(function (n) {
@ -102,10 +102,10 @@
var promise1 = ApiClient.getNamedConfiguration(notificationsConfigurationKey);
var promise2 = ApiClient.getJSON(ApiClient.getUrl("Notifications/Types"));
$.when(promise1, promise2).then(function (response1, response2) {
Promise.all([promise1, promise2]).then(function (responses) {
var notificationOptions = response1[0];
var types = response2[0];
var notificationOptions = responses[0];
var types = responses[1];
var notificationConfig = notificationOptions.Options.filter(function (n) {