Skip to content

Commit

Permalink
Toggle focus class to allow submenu access on tablets
Browse files Browse the repository at this point in the history
  • Loading branch information
iamtakashi committed Jan 13, 2016
1 parent d40faf1 commit 7c5b0d8
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions js/navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,35 @@
self = self.parentElement;
}
}

/**
* Toggles `focus` class to allow submenu access on tablets.
*/
( function ( container ) {
var touchStartFn,
parentLink = container.querySelectorAll( '.menu-item-has-children > a, .page_item_has_children > a' );

if ( 'ontouchstart' in window ) {
touchStartFn = function( e ) {
var menuItem = this.parentNode;

if ( ! menuItem.classList.contains( 'focus' ) ) {
e.preventDefault();
for( var 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 ( var i = 0; i < parentLink.length; ++i ) {
parentLink[i].addEventListener( 'touchstart', touchStartFn, false );
}
}
} ( container ) );
} )();

0 comments on commit 7c5b0d8

Please sign in to comment.