We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 715c1f7 commit 701375cCopy full SHA for 701375c
aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/wwwroot/js/admin.js
@@ -70,6 +70,8 @@ $.AdminBSB.leftSideBar = {
70
//When page load
71
$.each($('.menu .list li.active'), function (i, val) {
72
var $activeAnchors = $(val).find('a:eq(0)');
73
+ var $parentAnchors = $(val).parentsUntil('.menu .list', 'li').children('a:first-child');
74
+ $activeAnchors = $activeAnchors.add($parentAnchors);
75
76
$activeAnchors.addClass('toggled');
77
$activeAnchors.next().show();
0 commit comments