This commit is contained in:
Miodec 2021-01-28 20:12:59 +00:00
parent 6581629404
commit 9d075164f1

View file

@ -5406,7 +5406,10 @@ function handleAlpha(event) {
thisCharCorrect = true;
}
if (event.key === "ё" && (nextCharInWord == "е" || event.key === "e")) {
if (
event.key === "ё" &&
(nextCharInWord == "е" || nextCharInWord === "e")
) {
event.key = nextCharInWord;
thisCharCorrect = true;
}