mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
bump dev version
This commit is contained in:
parent
6daced8387
commit
48a576778f
28 changed files with 443 additions and 326 deletions
|
@ -181,7 +181,7 @@
|
|||
|
||||
window.MyProfilePage = new myProfilePage();
|
||||
|
||||
$(document).on('pageinit', "#userImagePage", function () {
|
||||
$(document).on('pageinitdepends', "#userImagePage", function () {
|
||||
|
||||
var page = this;
|
||||
|
||||
|
@ -204,6 +204,9 @@
|
|||
|
||||
});
|
||||
});
|
||||
|
||||
$('.newImageForm').off('submit', MyProfilePage.onImageSubmit).on('submit', MyProfilePage.onImageSubmit);
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
@ -316,7 +319,7 @@
|
|||
|
||||
Dashboard.showError(Globalize.translate('PasswordMatchError'));
|
||||
} else {
|
||||
|
||||
|
||||
Dashboard.showLoadingMsg();
|
||||
savePassword(page);
|
||||
}
|
||||
|
@ -403,7 +406,14 @@
|
|||
|
||||
window.UpdatePasswordPage = new updatePasswordPage();
|
||||
|
||||
$(document).on('pageshow', ".userPasswordPage", function () {
|
||||
$(document).on('pageinitdepends', ".userPasswordPage", function () {
|
||||
|
||||
var page = this;
|
||||
|
||||
$('.updatePasswordForm').off('submit', UpdatePasswordPage.onSubmit).on('submit', UpdatePasswordPage.onSubmit);
|
||||
$('.localAccessForm').off('submit', UpdatePasswordPage.onLocalAccessSubmit).on('submit', UpdatePasswordPage.onLocalAccessSubmit);
|
||||
|
||||
}).on('pageshowready', ".userPasswordPage", function () {
|
||||
|
||||
var page = this;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue