Fix #12: Problème avec la touche efface sur safari

This commit is contained in:
JonathanMM 2022-01-13 20:38:22 +01:00
parent ebd51ec9d8
commit 6c42d49bc5

View file

@ -27,7 +27,7 @@ export default class Input {
if (touche === "Enter") {
this.validerMot();
} else {
} else if (touche !== "Backspace") {
this.saisirLettre(touche);
}
}).bind(this)