summaryrefslogtreecommitdiffstats
path: root/js/login.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/login.js')
-rw-r--r--js/login.js19
1 files changed, 10 insertions, 9 deletions
diff --git a/js/login.js b/js/login.js
index 6a68d98..aba0fa3 100644
--- a/js/login.js
+++ b/js/login.js
@@ -7,17 +7,18 @@ document.addEventListener("DOMContentLoaded", () => {
function setupEventListeners() {
// Setup login button listener
- $("#login-button").click(function () {
+ $("#login-button").click(() => {
login();
});
- window.addEventListener("keyup", function(event) {
- // Number 13 is the "Enter" key on the keyboard
- if (event.keyCode === 13) {
- // Cancel the default action, if needed
- event.preventDefault();
- login();
- }
- });
+
+ window.addEventListener("keyup", (event) => {
+ // Number 13 is the "Enter" key on the keyboard
+ if (event.keyCode === 13) {
+ // Cancel the default action, if needed
+ event.preventDefault();
+ login();
+ }
+ });
}
// Handle login button click