mirror of https://github.com/jpanther/congo.git
parent
d8c2534762
commit
027cdf071d
|
@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Main content area not growing to fill screen vertically
|
- Main content area not growing to fill screen vertically
|
||||||
|
- Search results not cleared when search is dismissed ([#109](https://github.com/jpanther/congo/pull/109))
|
||||||
|
|
||||||
## [2.0.3] - 2022-02-07
|
## [2.0.3] - 2022-02-07
|
||||||
|
|
||||||
|
|
|
@ -84,6 +84,8 @@ function hideSearch() {
|
||||||
if (searchVisible) {
|
if (searchVisible) {
|
||||||
document.body.style.overflow = "visible";
|
document.body.style.overflow = "visible";
|
||||||
wrapper.style.visibility = "hidden";
|
wrapper.style.visibility = "hidden";
|
||||||
|
input.value = "";
|
||||||
|
output.innerHTML = "";
|
||||||
document.activeElement.blur();
|
document.activeElement.blur();
|
||||||
searchVisible = false;
|
searchVisible = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue