Skip to content

Instantly share code, notes, and snippets.

@circus2271
Last active December 2, 2019 13:48
Show Gist options
  • Save circus2271/3a7cee0cdae18074284b0e876ef4084b to your computer and use it in GitHub Desktop.
Save circus2271/3a7cee0cdae18074284b0e876ef4084b to your computer and use it in GitHub Desktop.
(() => {
const headerAuthName = document.querySelector('.header__auth .auth__name');
if (headerAuthName) {
const headerStateMenu = document.querySelector('.state-menu');
headerAuthName.addEventListener('mouseover', () => {
headerStateMenu.style.display = 'block'
});
headerStateMenu.addEventListener('mouseleave', () => {
headerStateMenu.style.display = 'none'
})
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment