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-07-27 21:27:00 -04:00
parent 9b20e2c860
commit 171f241ac3
18 changed files with 1037 additions and 78 deletions

View file

@ -63,7 +63,9 @@
$(document).on('pageinitdepends', '#forgotPasswordPage', function () {
$('.forgotPasswordForm').off('submit', onSubmit).on('submit', onSubmit);
var page = this;
$('.forgotPasswordForm', page).off('submit', onSubmit).on('submit', onSubmit);
});
})(window);