From 6c42d49bc587e2e68589b9620876bb462eed22d8 Mon Sep 17 00:00:00 2001 From: JonathanMM Date: Thu, 13 Jan 2022 20:38:22 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20#12:=20Probl=C3=A8me=20avec=20la=20touche?= =?UTF-8?q?=20efface=20sur=20safari?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ts/input.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/input.ts b/ts/input.ts index 909298d..1988ed7 100644 --- a/ts/input.ts +++ b/ts/input.ts @@ -27,7 +27,7 @@ export default class Input { if (touche === "Enter") { this.validerMot(); - } else { + } else if (touche !== "Backspace") { this.saisirLettre(touche); } }).bind(this)