mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-21 17:05:22 +03:00
TMP: feat: scroll to top after loading new items by .
shortcut key but this is not working when showNewItems()
takes time
This commit is contained in:
parent
8ad05dfd47
commit
da3b134d18
1 changed files with 4 additions and 1 deletions
|
@ -75,5 +75,8 @@ export default defineNuxtPlugin(({ $scrollToTop }) => {
|
||||||
?.querySelector<HTMLElement>('button#elk_show_new_items')
|
?.querySelector<HTMLElement>('button#elk_show_new_items')
|
||||||
?.click()
|
?.click()
|
||||||
}
|
}
|
||||||
whenever(logicAnd(isAuthenticated, notUsingInput, keys['.']), showNewItems)
|
whenever(logicAnd(isAuthenticated, notUsingInput, keys['.']), () => {
|
||||||
|
showNewItems()
|
||||||
|
;($scrollToTop as () => void)()
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue