File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -106,8 +106,9 @@ export function sidebar (text, level) {
106
106
html = markdown ( text )
107
107
html = html . match ( / < u l [ ^ > ] * > ( [ \s \S ] + ) < \/ u l > / g) [ 0 ]
108
108
} else {
109
- const tree = genTree ( toc , level )
109
+ const tree = cacheTree [ currentPath ] || genTree ( toc , level )
110
110
html = treeTpl ( tree , '<ul>' )
111
+ cacheTree [ currentPath ] = tree
111
112
}
112
113
113
114
return html
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export function renderMixin (proto) {
75
75
76
76
this . _renderTo ( '.sidebar-nav' , sidebar ( text , maxLevel ) )
77
77
const active = getAndActive ( '.sidebar-nav' , true , true )
78
- loadSidebar && subSidebar ( active , subMaxLevel )
78
+ subSidebar ( loadSidebar ? active : '' , subMaxLevel )
79
79
// bind event
80
80
this . activeLink = active
81
81
scrollActiveSidebar ( )
You can’t perform that action at this time.
0 commit comments