Skip to content

Instantly share code, notes, and snippets.

@MjHead
Created October 5, 2017 09:02
Show Gist options
  • Save MjHead/ca13339614a63ff282cd2a040ab3aeb9 to your computer and use it in GitHub Desktop.
Save MjHead/ca13339614a63ff282cd2a040ab3aeb9 to your computer and use it in GitHub Desktop.
function doubleClickMenu( $jqEvent ) {
var $parentNode = $( this ),
$menuToggle = $parentNode.closest( '.menu' ).prev( '.menu-toggle' ),
menuIndex = $parentNode.index();
if ( 'inline-block' !== $menuToggle.css( 'display' ) ) {
if ( menuIndex !== parseInt( $parentNode.data( 'index' ), 10 ) ) {
$jqEvent.preventDefault();
}
$parentNode.data( 'index', menuIndex );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment