Commit 098b691d authored by Ad Schellevis's avatar Ad Schellevis

fix last jumpy bit in menu section

parent 770902f3
......@@ -148,7 +148,7 @@ $pagetitle = gentitle( $pgtitle );
// hide submenu items
$('#mainmenu .list-group-item').click(function(){
$('#mainmenu .list-group-item').each(function(){
if ($(this).attr('aria-expanded') == 'true' && $(this).data('parent') != '#mainmenu' ) {
if ($(this).attr('aria-expanded') == 'true' && $(this).data('parent') != '#mainmenu' && $(this).attr('href').substring(0,1) != '#') {
$("#"+$(this).attr('href').substring(1,999)).collapse('hide');
}
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment