Still waiting for the New York Times to send me a bogus takedown notice
Automatically convert guess to lowercase
| -rw-r--r-- | script.js | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -48,6 +48,7 @@ function addGuessDisplay(answer, guess, len, hint) { function checkAnswer(event, answer, len, wordlist) { event.preventDefault(); + input.value = input.value.toLowerCase(); if (!exit) { if (wordlist.includes(input.value)) { |