removed blur() in resetSearch()

see d4377e0f49dc8dd5787f4466c9ab7f7e7cd37ec5#note_874 for details
This commit is contained in:
Erhard 2017-08-04 14:26:40 +02:00
parent ed84c4fbe9
commit 3d38220023

View File

@ -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";
});