mirror of
https://github.com/kristoferssolo/kristofersxyz.git
synced 2025-10-21 18:30:34 +00:00
14 lines
498 B
JavaScript
14 lines
498 B
JavaScript
const PRIMARY_NAV = document.querySelector(".primary-navigation")
|
|
const EMAIL = document.querySelector(".mobile-nav-toggle")
|
|
|
|
EMAIL.addEventListener("click", () => {
|
|
const VISIBILITY = PRIMARY_NAV.getAttribute("data-visible") === "false"
|
|
if (VISIBILITY) {
|
|
PRIMARY_NAV.setAttribute("data-visible", true)
|
|
EMAIL.setAttribute("aria-expanded", true)
|
|
} else {
|
|
PRIMARY_NAV.setAttribute("data-visible", false)
|
|
EMAIL.setAttribute("aria-expanded", false)
|
|
}
|
|
})
|