Created
September 21, 2017 15:42
-
-
Save akopcz2/5910e3b8f00f3d021e4f385a3fbaca6c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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