[web] Lint source code
This commit is contained in:
parent
3f3ab829c0
commit
f156bb357a
|
@ -33,7 +33,6 @@ export default [
|
|||
'no-ternary': 'off',
|
||||
'no-undef': 'off',
|
||||
'no-undefined': 'off',
|
||||
'no-unused-expressions': 'off',
|
||||
'no-unused-vars': ['error', { args: 'none', caughtErrors: 'none' }],
|
||||
'no-useless-assignment': 'off',
|
||||
'one-var': 'off',
|
||||
|
|
|
@ -129,9 +129,11 @@ export default {
|
|||
) {
|
||||
return index
|
||||
}
|
||||
currentVerse.time < currentTime
|
||||
? (start = index + 1)
|
||||
: (end = index - 1)
|
||||
if (currentVerse.time < currentTime) {
|
||||
start = index + 1
|
||||
} else {
|
||||
end = index - 1
|
||||
}
|
||||
}
|
||||
return -1
|
||||
}
|
||||
|
@ -141,7 +143,9 @@ export default {
|
|||
},
|
||||
watch: {
|
||||
verse_index() {
|
||||
this.autoScrolling && this.scroll_to_verse()
|
||||
if (this.autoScrolling) {
|
||||
this.scroll_to_verse()
|
||||
}
|
||||
this.lastIndex = this.verse_index
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue