Skip to content

Commit

Permalink
Add listener on change for FF manual auto-fill
Browse files Browse the repository at this point in the history
  • Loading branch information
tischsoic committed Jan 18, 2022
1 parent 1022017 commit a3dc181
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/bundle/Resources/public/js/scripts/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@

if (loginBtn) {
nameInput.addEventListener('keyup', toggleLoginBtnState, false);
nameInput.addEventListener('change', toggleLoginBtnState, false);
passwordInput.addEventListener('keyup', toggleLoginBtnState, false);
passwordInput.addEventListener('change', toggleLoginBtnState, false);

toggleLoginBtnState();

Expand Down

0 comments on commit a3dc181

Please sign in to comment.