From 3d382200236b5f50cd1f3966c7d6ca5ce1852bad Mon Sep 17 00:00:00 2001 From: Andreas Erhard Date: Fri, 4 Aug 2017 14:26:40 +0200 Subject: [PATCH] removed blur() in resetSearch() see d4377e0f49dc8dd5787f4466c9ab7f7e7cd37ec5#note_874 for details --- static/main.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/static/main.js b/static/main.js index a6e77fb..075569c 100644 --- a/static/main.js +++ b/static/main.js @@ -100,9 +100,6 @@ function resetSearch() { var searchfield = document.querySelector("#search"); var buttons = document.querySelectorAll(".sound"); - // TODO: check if blur() still necessary or if value="" and focus() are already enough. See d4377e0f49dc8dd5787f4466c9ab7f7e7cd37ec5#note_871 - searchfield.blur(); - buttons.forEach(function(item) { item.style.display = "inline-block"; });