Add a clear button
This commit is contained in:
@@ -6,6 +6,7 @@ const IS_INVALID = 'is-invalid';
|
||||
|
||||
const wordInput = /** @type {HTMLInputElement} */ (document.getElementById('word-input'));
|
||||
const buttons = /** @type {HTMLDivElement} */ (document.getElementById('input-buttons'));
|
||||
const clearButton = /** @type {HTMLButtonElement} */ (document.getElementById('clear-button'));
|
||||
const light = /** @type {HTMLDivElement} */ (document.getElementById('light'));
|
||||
|
||||
mermaid.initialize({
|
||||
@@ -80,7 +81,6 @@ for (const letter of alphabet) {
|
||||
// Reacts to input in the text box
|
||||
wordInput.addEventListener('input', () => {
|
||||
const value = wordInput.value;
|
||||
console.log(value);
|
||||
builder = '';
|
||||
state = 0;
|
||||
for (const letter of value) {
|
||||
@@ -91,4 +91,11 @@ wordInput.addEventListener('input', () => {
|
||||
}
|
||||
});
|
||||
|
||||
clearButton.addEventListener('click', () => {
|
||||
wordInput.value = '';
|
||||
builder = '';
|
||||
state = 0;
|
||||
updateUIState();
|
||||
});
|
||||
|
||||
updateUIState();
|
||||
|
Reference in New Issue
Block a user