Stop blink from loading more statuses with every scroll.

This commit is contained in:
csaurus 2018-04-22 16:12:34 -04:00
parent b6eb1b1d98
commit 59f98aecd9
1 changed files with 2 additions and 1 deletions

View File

@ -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 &&