Commit 2dddcfd4 authored by Ad Schellevis's avatar Ad Schellevis

(legacy) menu item collapse, https://github.com/opnsense/core/issues/401

parent a02d0480
......@@ -145,6 +145,15 @@ $pagetitle = gentitle( $pgtitle );
event.preventDefault();
});
// hide submenu items
$('#mainmenu .list-group-item').click(function(){
$('#mainmenu .list-group-item').each(function(){
if ($(this).attr('aria-expanded') == 'true') {
$("#"+$(this).attr('href').substring(1,999)).collapse('hide');
}
});
});
});
//]]>
</script>
......
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