mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-04-05 01:02:41 +00:00
Fix navigation menu's aria-expanded attribute when closed with Escape key
This commit is contained in:
parent
6bbb230f1f
commit
1614230583
@ -145,6 +145,7 @@ https://kalechips.net/projects/snippets/burger #}
|
|||||||
const key = event.code;
|
const key = event.code;
|
||||||
if (key == "Escape") {
|
if (key == "Escape") {
|
||||||
navbarBurger.removeAttribute("open");
|
navbarBurger.removeAttribute("open");
|
||||||
|
navbarBurger.ariaExpanded = false;
|
||||||
document.querySelector(".navbar__toggle").focus();
|
document.querySelector(".navbar__toggle").focus();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user