mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-06-07 16:17:50 +00:00
chore: close toc-popup gracefully with Esc key (#1990)
This commit is contained in:
parent
8a064a5e5a
commit
03e302cbf6
@ -62,7 +62,11 @@ export class TocMobile {
|
||||
activeItem.scrollIntoView({ block: 'center' });
|
||||
}
|
||||
|
||||
static hidePopup() {
|
||||
static hidePopup(event) {
|
||||
if (event?.type === 'cancel') {
|
||||
event.preventDefault();
|
||||
}
|
||||
|
||||
if (!$popup.open) {
|
||||
return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user