Fix bug 565 #187

Merged
mrlan merged 1 commits from Bug565-Hui into Alpha-snapshot20240618 2024-09-07 09:04:36 +08:00
1 changed files with 7 additions and 1 deletions

View File

@ -60,7 +60,13 @@ function delete_word(theWord) {
removeWord(theWord); removeWord(theWord);
} else { } else {
$("#p_" + theWord).remove(); $("#p_" + theWord).remove();
} }
// remove highlighting for the word
let highlightedWords = document.querySelectorAll('.highlighted');
for (let x of highlightedWords) {
if (x.innerHTML == word)
x.replaceWith(x.innerHTML);
}
} }
}); });
} }