Commit 76e2f750 authored by BaiJiangJie's avatar BaiJiangJie

[Bugfix] 修复改密计划菜单不高亮的问题

parent fa715085
...@@ -153,7 +153,7 @@ function activeNav() { ...@@ -153,7 +153,7 @@ function activeNav() {
} else { } else {
$("#" + app).addClass('active'); $("#" + app).addClass('active');
$('#' + app + ' #' + resource).addClass('active'); $('#' + app + ' #' + resource).addClass('active');
$('#' + app + ' #' + resource.replace('-', '_')).addClass('active'); $('#' + app + ' #' + resource.replaceAll('-', '_')).addClass('active');
} }
} }
......
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