close the nav via 'going back' in the browser #47

Merged
jeff merged 2 commits from back-button-close-nav into master 2022-04-25 16:38:54 +00:00
Showing only changes of commit 1bb22b9aaf - Show all commits

View File

@ -1,12 +1,11 @@
<script>
function openNavDrawer() {
navDrawerOverlay.classList.toggle('d-none')
navDrawerOverlay.classList.remove('d-none')
navDrawer.style.transform = 'translate(0)'
window.location.hash = '#nav'
}
function closeNavDrawer() {
navDrawerOverlay.classList.toggle('d-none')
navDrawerOverlay.classList.add('d-none')
navDrawer.style.transform = 'translate(100%)'
}
@ -65,15 +64,4 @@
initToggle(th)
closeNavDrawer()
})()
if (window.location.hash == '#nav') {
history.replaceState("", document.title, window.location.pathname);
}
window.addEventListener('hashchange', function(e) {
if (window.location.hash == '') {
closeNavDrawer()
history.replaceState("", document.title, window.location.pathname);
}
})
</script>