#12 Fixed issue that last dropdown will pop in wrong position #17

Merged
Serraniel merged 1 commit from feature/#12-search-input-with-hotkey into develop 2020-08-04 11:23:58 +02:00

View file

@ -33,6 +33,9 @@ function initSearch() {
// register focus hotkey
document.addEventListener('keypress', event => handleSearchForShiftF(event));
// additionally, the last dropdown ul has a "right: 0px" style, which has to be fixed with auto, otherwhise it will pop up in the wrong position
Array.from(menu.querySelectorAll('ul.dropdown')).slice(-1)[0].style.right = 'auto';
}
function handleQuickSearch(event) {
@ -44,6 +47,7 @@ function handleQuickSearch(event) {
url.pathname = '/search';
url.searchParams.append('q', quickSearchElement.value);
// clicking the link; we are not setting window.location because this will trigger a complete reload of the site
linkElement.href = `${url.pathname}${url.search}`;
linkElement.click();