Menu on click

git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3387 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
adametz 2018-04-12 14:56:48 +00:00
parent 640e22b339
commit c42c7358ea

View file

@ -289,6 +289,13 @@ jQuery(document).ready(function($) {
$(this).toggleClass('open');
}
);
$(".header .dropdown:not(.openClick)").click(
function() {
window.location.href = $(this).find('a').attr('href');
}
);
}