diff options
author | elioat <elioat@tilde.institute> | 2025-01-11 09:47:51 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2025-01-11 09:47:51 -0500 |
commit | 88935a5b7ded11b9ae034bc7cdf4f85f296f148b (patch) | |
tree | 4006251198c83b54d5fba672dfb4fe74c0c49711 /html | |
parent | 19cc31cac47903de7fe78ba602eb5693acba5916 (diff) | |
download | tour-88935a5b7ded11b9ae034bc7cdf4f85f296f148b.tar.gz |
*
Diffstat (limited to 'html')
-rw-r--r-- | html/cards/script.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/html/cards/script.js b/html/cards/script.js index 9d76e24..b6bb9dc 100644 --- a/html/cards/script.js +++ b/html/cards/script.js @@ -123,7 +123,7 @@ const initializeGame = () => { // Add event listener for the 'r' key document.addEventListener('keydown', e => { - if (e.key === 'r') { + if (e.key === 'q') { handleResetGame(); } }); |