Skip to content

Commit

Permalink
Fix typing timeout on create account page
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinsonZ committed Oct 3, 2023
1 parent ce1c5c6 commit 7416ed6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webStatic/src/js/createAccount.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ window.bootstrap = bootstrap;

usernameInput.addEventListener('input', function (event) {
clearTimeout(usernameTypingTimer);
usernameTypingTimer = setTimeout(doneTypingEmail, doneTypingInterval);
usernameTypingTimer = setTimeout(doneTypingUser, doneTypingInterval);
});

let emailTypingTimer;
Expand Down

0 comments on commit 7416ed6

Please sign in to comment.