diff options
author | elioat <{ID}+{username}@users.noreply.github.com> | 2025-01-03 10:45:47 -0500 |
---|---|---|
committer | elioat <{ID}+{username}@users.noreply.github.com> | 2025-01-03 10:45:47 -0500 |
commit | 59d6b869cfd9b8342f9bf623070769dbea7a0105 (patch) | |
tree | ffe6d272b14ea6cc39d598e78985681ef6790177 /html/matt-chat | |
parent | 8f7e43238201094476a8cbc8b553e2facfd28938 (diff) | |
download | tour-59d6b869cfd9b8342f9bf623070769dbea7a0105.tar.gz |
*
Diffstat (limited to 'html/matt-chat')
-rw-r--r-- | html/matt-chat/index.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/html/matt-chat/index.html b/html/matt-chat/index.html index 17dcefe..530d36c 100644 --- a/html/matt-chat/index.html +++ b/html/matt-chat/index.html @@ -264,18 +264,21 @@ if (userMessage.toLowerCase() === '/darkmode') { toggleDarkMode(); userInput.value = ""; // Clear input after command + updateCounter(); // Reset counters return; } if (userMessage.toLowerCase() === '/clear') { clearChat(); userInput.value = ""; // Clear input after command + updateCounter(); // Reset counters return; } if (userMessage.toLowerCase() === '/help') { displayHelp(); userInput.value = ""; // Clear input after command + updateCounter(); // Reset counters return; } |