style: Fixed variable already declared
This commit is contained in:
parent
3919d4fc0e
commit
8c2b00b05a
1 changed files with 2 additions and 2 deletions
|
@ -750,7 +750,7 @@ export function generateToc (id) {
|
||||||
'targetId': id,
|
'targetId': id,
|
||||||
'process': getHeaderContent
|
'process': getHeaderContent
|
||||||
})
|
})
|
||||||
/* eslint-enable no-unsed-vars */
|
/* eslint-enable no-unused-vars */
|
||||||
if (target.text() === 'undefined') { target.html('') }
|
if (target.text() === 'undefined') { target.html('') }
|
||||||
const tocMenu = $('<div class="toc-menu"></div')
|
const tocMenu = $('<div class="toc-menu"></div')
|
||||||
const toggle = $('<a class="expand-toggle" href="#">Expand all</a>')
|
const toggle = $('<a class="expand-toggle" href="#">Expand all</a>')
|
||||||
|
@ -888,7 +888,7 @@ export function renderTOC (view) {
|
||||||
const target = $(`#${id}`)
|
const target = $(`#${id}`)
|
||||||
target.html('')
|
target.html('')
|
||||||
/* eslint-disable no-unused-vars */
|
/* eslint-disable no-unused-vars */
|
||||||
var toc = new window.Toc('doc', {
|
let TOC = new window.Toc('doc', {
|
||||||
'level': 3,
|
'level': 3,
|
||||||
'top': -1,
|
'top': -1,
|
||||||
'class': 'toc',
|
'class': 'toc',
|
||||||
|
|
Loading…
Reference in a new issue