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

update confirm

This commit is contained in:
Luke Pulverenti 2016-02-22 14:31:28 -05:00
parent 166a16b60d
commit 1ea5d5f307
191 changed files with 8714 additions and 48569 deletions

View file

@ -192,17 +192,16 @@
$('#btnDeleteImage', page).on('click', function () {
Dashboard.confirm(Globalize.translate('DeleteImageConfirmation'), Globalize.translate('DeleteImage'), function (result) {
require(['confirm'], function (confirm) {
if (result) {
confirm(Globalize.translate('DeleteImageConfirmation'), Globalize.translate('DeleteImage')).then(function () {
Dashboard.showLoadingMsg();
var userId = getParameterByName("userId");
ApiClient.deleteUserImage(userId, "primary").then(processImageChangeResult);
}
});
});
});
@ -376,9 +375,10 @@
var page = $($.mobile.activePage)[0];
Dashboard.confirm(msg, Globalize.translate('PasswordResetHeader'), function (result) {
require(['confirm'], function (confirm) {
confirm(msg, Globalize.translate('PasswordResetHeader')).then(function () {
if (result) {
var userId = getParameterByName("userId");
Dashboard.showLoadingMsg();
@ -395,7 +395,7 @@
loadUser(page);
});
}
});
});
};
@ -406,9 +406,10 @@
var page = $($.mobile.activePage)[0];
Dashboard.confirm(msg, Globalize.translate('HeaderPinCodeReset'), function (result) {
require(['confirm'], function (confirm) {
confirm(msg, Globalize.translate('HeaderPinCodeReset')).then(function () {
if (result) {
var userId = getParameterByName("userId");
Dashboard.showLoadingMsg();
@ -425,9 +426,8 @@
loadUser(page);
});
}
});
});
};
}