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

fix forgot password page

This commit is contained in:
Luke Pulverenti 2015-09-07 12:53:58 -04:00
parent 7ee6317dae
commit c86543dc59
5 changed files with 26 additions and 31 deletions

View file

@ -51,8 +51,11 @@
return false;
}
$(document).on('pageinit', '#forgotPasswordPinPage', function () {
$('.forgotPasswordPinForm').off('submit', onSubmit).on('submit', onSubmit);
$(document).on('pageinit', '.forgotPasswordPinPage', function () {
var page = this;
$('form', page).off('submit', onSubmit).on('submit', onSubmit);
});
})(window);