doc: Update docker.md (#292)

update docker commit grammar 8382555a20
This commit is contained in:
jaywcjlove
2023-02-07 09:54:23 +00:00
parent e2bee19dd0
commit f17f728fc2
4 changed files with 51 additions and 43 deletions

View File

@ -74,6 +74,9 @@ let inputValue = '';
let activeIndex = 0
document.addEventListener('keydown', (ev) => {
if (ev.key.toLocaleLowerCase() === 'escape') {
hideSearch();
}
if (ev.metaKey && ev.key.toLocaleLowerCase() === 'k') {
searchBox.classList.contains('show') ? hideSearch() : showSearch();
}