mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-17 01:54:49 +00:00
(mvc/menu) hide empty menu options for second level containers as well
This commit is contained in:
parent
ad3472f844
commit
74e3d1f48b
@ -53,9 +53,18 @@
|
||||
});
|
||||
|
||||
// hide empty menu items
|
||||
$('#mainmenu > div > .collapse').each(function(){
|
||||
$('#mainmenu > div > .collapse').each(function () {
|
||||
// cleanup empty second level menu containers
|
||||
$(this).find("div.collapse").each(function () {
|
||||
if ($(this).children().length == 0) {
|
||||
$("#mainmenu").find('[href="#' + $(this).attr('id') + '"]').remove();
|
||||
$(this).remove();
|
||||
}
|
||||
});
|
||||
|
||||
// cleanup empty first level menu items
|
||||
if ($(this).children().length == 0) {
|
||||
$("#mainmenu").find('[href="#'+$(this).attr('id')+'"]').remove();
|
||||
$("#mainmenu").find('[href="#' + $(this).attr('id') + '"]').remove();
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user