File: D:/HostingSpaces/JTent/tentje.com/wwwroot/wp-content/themes/aperture/js/navigation.js
/**
* navigation.js
*
* Handles toggling the navigation menu for small screens.
*/
( function() {
var container, button, menu;
container = document.getElementById( 'page' );
if ( ! container ) {
return;
}
button = container.getElementsByTagName( 'button' )[2];
if ( 'undefined' === typeof button ) {
return;
}
menu = container.getElementsByTagName( 'nav' )[0];
// Hide menu toggle button if menu is empty and return early.
if ( 'undefined' === typeof menu ) {
button.style.display = 'none';
return;
}
menu.setAttribute( 'aria-expanded', 'false' );
if ( -1 === menu.className.indexOf( 'nav-menu' ) ) {
menu.className += ' nav-menu';
}
button.onclick = function() {
if ( -1 !== container.className.indexOf( 'menu-toggled' ) ) {
container.className = container.className.replace( ' menu-toggled', '' );
button.setAttribute( 'aria-expanded', 'false' );
menu.setAttribute( 'aria-expanded', 'false' );
} else {
container.className += ' menu-toggled';
button.setAttribute( 'aria-expanded', 'true' );
menu.setAttribute( 'aria-expanded', 'true' );
}
};
} )();