mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-04-06 14:22:41 +00:00
Refactor aria-expanded attribute check
This commit is contained in:
parent
1bc88b6c95
commit
4ef8ebd499
@ -96,10 +96,10 @@
|
||||
const showClass = "navbar__links--show";
|
||||
navbarLinks.classList.toggle(showClass);
|
||||
|
||||
if (navbarToggle.getAttribute("aria-expanded") === "false") {
|
||||
navbarToggle.setAttribute("aria-expanded", "true");
|
||||
if (navbarToggle.ariaExpanded === "false") {
|
||||
navbarToggle.ariaExpanded = "true";
|
||||
} else {
|
||||
navbarToggle.setAttribute("aria-expanded", "false");
|
||||
navbarToggle.ariaExpanded = "false";
|
||||
}
|
||||
});
|
||||
</script>
|
Loading…
x
Reference in New Issue
Block a user