forked from AkkomaGang/akkoma-fe
Stop blink from loading more statuses with every scroll.
This commit is contained in:
parent
b6eb1b1d98
commit
59f98aecd9
1 changed files with 2 additions and 1 deletions
|
@ -105,7 +105,8 @@ const Timeline = {
|
|||
.then((friends) => this.$store.dispatch('addFriends', { friends }))
|
||||
},
|
||||
scrollLoad (e) {
|
||||
const height = Math.max(document.body.offsetHeight, document.body.scrollHeight)
|
||||
const bodyBRect = document.body.getBoundingClientRect();
|
||||
const height = Math.max(bodyBRect.height, -(bodyBRect.y))
|
||||
if (this.timeline.loading === false &&
|
||||
this.$store.state.config.autoLoad &&
|
||||
this.$el.offsetHeight > 0 &&
|
||||
|
|
Loading…
Reference in a new issue