forked from extern/the-glorious-startpage
escape button will close opened screens/panel
This commit is contained in:
parent
df3066687d
commit
eacf044f07
@ -23,13 +23,19 @@ document.addEventListener(
|
||||
|
||||
if (event.key === 'Escape') {
|
||||
|
||||
// If searchbox is visible, hide and clear input field
|
||||
// If any of this are open, close it
|
||||
if (searchBoxVisility) {
|
||||
// Hide searchbox
|
||||
toggleSearchBox();
|
||||
searchBox.value = '';
|
||||
return;
|
||||
};
|
||||
} else if (weatherScreenVisibility) {
|
||||
toggleWeatherScreen();
|
||||
return;
|
||||
} else if (rightDashboardVisibility) {
|
||||
toggleDashboard();
|
||||
return;
|
||||
}
|
||||
|
||||
// Show web menu
|
||||
toggleWebMenu();
|
||||
|
Loading…
Reference in New Issue
Block a user