Commit 05df3f22 authored by Ad Schellevis's avatar Ad Schellevis Committed by Franco Fichtner

some rework for https://github.com/opnsense/core/issues/401

(cherry picked from commit 1a172380)
parent 35654b03
......@@ -70,7 +70,7 @@
// hide submenu items
$('#mainmenu .list-group-item').click(function(){
$('#mainmenu .list-group-item').each(function(){
if ($(this).attr('aria-expanded') == 'true') {
if ($(this).attr('aria-expanded') == 'true' && $(this).data('parent') != '#mainmenu') {
$("#"+$(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