From a059d274c0aca16fc6e3af6fb0c74fdcf039bc41 Mon Sep 17 00:00:00 2001 From: Emil Miler Date: Fri, 22 Nov 2019 10:04:36 +0100 Subject: [PATCH] Unfocus client from input on timer start --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index cf950fc..85e0670 100644 --- a/index.html +++ b/index.html @@ -29,6 +29,7 @@ if (event.keyCode === 13) { event.preventDefault(); if (!getTime(input)) { + input.blur(); startCounter(); } }