1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-27 08:05:28 +00:00
This commit is contained in:
Silvio Giebl 2019-05-19 02:41:18 +02:00
parent 6f225b0d28
commit 48a4a37977

View File

@ -108,7 +108,9 @@ function initSearch() {
} }
} else { } else {
var next = document.querySelector('.search-result'); var next = document.querySelector('.search-result');
next.classList.add('active'); if (next) {
next.classList.add('active');
}
} }
return; return;
case 13: // enter case 13: // enter
@ -118,7 +120,9 @@ function initSearch() {
active.click(); active.click();
} else { } else {
var first = document.querySelector('.search-result'); var first = document.querySelector('.search-result');
first.click(); if (first) {
first.click();
}
} }
return; return;
} }
@ -247,7 +251,9 @@ function initSearch() {
} }
}); });
addEvent(searchInput, 'blur', hideResults); addEvent(searchInput, 'blur', function(){
setTimeout(function(){ hideResults() }, 300);
});
} }
} }