Skip to content

Instantly share code, notes, and snippets.

@beatlecz
Last active March 10, 2016 09:20
Show Gist options
  • Save beatlecz/9242ebad7ff0840ee9e1 to your computer and use it in GitHub Desktop.
Save beatlecz/9242ebad7ff0840ee9e1 to your computer and use it in GitHub Desktop.
$('#header .navigation > nav > .ubermenu-nav > li.ubermenu-item-has-children').click(
function() {
if ($('body').hasClass('fading-page')) {
$('body').removeClass('fading-page');
} else {
$('body').addClass('fading-page');
}
}
);
$('#header .navigation > nav > .ubermenu-nav > li.ubermenu-item-has-children a').click(function(e) {
e.stopPropagation();
});
$('#megamenu-overlay').click(
function(){
$('body').removeClass('fading-page');
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment