File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 2
2
"name" : " jp.vuejs.org" ,
3
3
"private" : true ,
4
4
"hexo" : {
5
- "version" : " 3.8.0 "
5
+ "version" : " 3.8.1 "
6
6
},
7
7
"engines" : {
8
8
"node" : " >=8.9.0"
Original file line number Diff line number Diff line change 364
364
var headers = content . querySelectorAll ( 'h2' )
365
365
if ( headers . length ) {
366
366
each . call ( headers , function ( h ) {
367
- sectionContainer . appendChild ( makeLink ( h ) )
367
+ var listItem = makeLink ( h )
368
+ sectionContainer . appendChild ( listItem )
368
369
var h3s = collectH3s ( h )
369
370
allHeaders . push ( h )
370
371
allHeaders . push . apply ( allHeaders , h3s )
371
372
if ( h3s . length ) {
372
- sectionContainer . appendChild ( makeSubLinks ( h3s , isAPIOrStyleGuide ) )
373
+ listItem . appendChild ( makeSubLinks ( h3s , isAPIOrStyleGuide ) )
373
374
}
374
375
} )
375
376
} else {
You can’t perform that action at this time.
0 commit comments