Skip to content

Instantly share code, notes, and snippets.

@astrotars
Created February 26, 2020 15:59
Show Gist options
  • Save astrotars/8ebc733c5acae62777216007f4fe00bc to your computer and use it in GitHub Desktop.
Save astrotars/8ebc733c5acae62777216007f4fe00bc to your computer and use it in GitHub Desktop.
const user = document.getElementById('user-login-input');
user.addEventListener('keyup', function(event) {
if (event.key === 'Enter') {
checkAuthState();
}
});
checkAuthState();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment