fix: fix target clear logic
This commit is contained in:
parent
483e4b6c67
commit
e06e507702
@ -322,7 +322,7 @@ margin-y($top, $bottom = $top)
|
||||
[data-target]
|
||||
outline 2px solid transparent
|
||||
outline-offset -1px
|
||||
animation target-blink 3s ease 1 both
|
||||
animation target-blink 5s ease 1 both
|
||||
|
||||
.hljs-attr
|
||||
color #c5e478
|
||||
@ -331,10 +331,11 @@ margin-y($top, $bottom = $top)
|
||||
0%
|
||||
outline-color #8fbcff
|
||||
|
||||
5%
|
||||
15%
|
||||
3%
|
||||
9%
|
||||
outline-color #0052cc
|
||||
|
||||
10%
|
||||
6%
|
||||
12%
|
||||
80%
|
||||
outline-color #8fbcff
|
||||
|
@ -1,15 +1,19 @@
|
||||
export default ({ app }) => {
|
||||
let target
|
||||
|
||||
document.documentElement.addEventListener('click', () => {
|
||||
function clearTarget () {
|
||||
if (!target) {
|
||||
return
|
||||
}
|
||||
|
||||
delete target.dataset.target
|
||||
})
|
||||
}
|
||||
|
||||
export default ({ app }) => {
|
||||
document.documentElement.addEventListener('click', clearTarget)
|
||||
|
||||
app.router.afterEach(to => {
|
||||
clearTarget()
|
||||
|
||||
if (!to.hash) {
|
||||
return
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user