Skip to content

Instantly share code, notes, and snippets.

@akopcz2
Created September 21, 2017 15:42
Show Gist options
  • Save akopcz2/5910e3b8f00f3d021e4f385a3fbaca6c to your computer and use it in GitHub Desktop.
Save akopcz2/5910e3b8f00f3d021e4f385a3fbaca6c to your computer and use it in GitHub Desktop.
class MobileNavigation {
constructor() {
this.mobileNavigationElements = {
mobileNavLink: document.querySelectorAll('.global-navigation-slideout-mobile__item')
};
}
attachListener(currentState) {
if(currentState.mobileNavigation) {
for (let element of [...this.mobileNavigationElements.mobileNavLink]) {
element.addEventListener('click', (event) => {
let parent = event.currentTarget;
parent.firstElementChild.click();
});
}
}
}
}
module.exports = new MobileNavigation();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment