/** * File navigation.js. * * Handles toggling the navigation menu for small screens and enables TAB key * navigation support for dropdown menus. */ ( function() { var beautystore_container, beautystore_button, beautystore_menu, beautystore_links, i, len; beautystore_container = document.getElementById( 'site-navigation' ); if ( ! beautystore_container ) { return; } beautystore_button = beautystore_container.getElementsByTagName( 'button' )[0]; if ( 'undefined' === typeof beautystore_button ) { return; } beautystore_menu = beautystore_container.getElementsByTagName( 'ul' )[0]; // Hide menu toggle button if menu is empty and return early. if ( 'undefined' === typeof beautystore_menu ) { beautystore_button.style.display = 'none'; return; } beautystore_menu.setAttribute( 'aria-expanded', 'false' ); if ( -1 === beautystore_menu.className.indexOf( 'nav-menu' ) ) { beautystore_menu.className += ' nav-menu'; } beautystore_button.onclick = function() { if ( -1 !== beautystore_container.className.indexOf( 'toggled' ) ) { beautystore_container.className = beautystore_container.className.replace( ' toggled', '' ); beautystore_button.setAttribute( 'aria-expanded', 'false' ); beautystore_menu.setAttribute( 'aria-expanded', 'false' ); } else { beautystore_container.className += ' toggled'; beautystore_button.setAttribute( 'aria-expanded', 'true' ); beautystore_menu.setAttribute( 'aria-expanded', 'true' ); } }; // Get all the link elements within the menu. beautystore_links = beautystore_menu.getElementsByTagName( 'a' ); // Each time a menu link is focused or blurred, toggle focus. for ( i = 0, len = beautystore_links.length; i < len; i++ ) { beautystore_links[i].addEventListener( 'focus', toggleFocus, true ); beautystore_links[i].addEventListener( 'blur', toggleFocus, true ); } /** * Sets or removes .focus class on an element. */ function toggleFocus() { var self = this; // Move up through the ancestors of the current link until we hit .nav-menu. while ( -1 === self.className.indexOf( 'nav-menu' ) ) { // On li elements toggle the class .focus. if ( 'li' === self.tagName.toLowerCase() ) { if ( -1 !== self.className.indexOf( 'focus' ) ) { self.className = self.className.replace( ' focus', '' ); } else { self.className += ' focus'; } } self = self.parentElement; } } /** * Toggles `focus` class to allow submenu access on tablets. */ ( function( beautystore_container ) { var touchStartFn, i, parentLink = beautystore_container.querySelectorAll( '.menu-item-has-children > a, .page_item_has_children > a' ); if ( 'ontouchstart' in window ) { touchStartFn = function( e ) { var menuItem = this.parentNode, i; if ( ! menuItem.classList.contains( 'focus' ) ) { e.preventDefault(); for ( i = 0; i < menuItem.parentNode.children.length; ++i ) { if ( menuItem === menuItem.parentNode.children[i] ) { continue; } menuItem.parentNode.children[i].classList.remove( 'focus' ); } menuItem.classList.add( 'focus' ); } else { menuItem.classList.remove( 'focus' ); } }; for ( i = 0; i < parentLink.length; ++i ) { parentLink[i].addEventListener( 'touchstart', touchStartFn, false ); } } }( beautystore_container ) ); } )();