aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShpuld Shpuldson <shpuld@gmail.com>2017-06-03 19:53:23 +0300
committerShpuld Shpuldson <shpuld@gmail.com>2017-06-03 19:53:23 +0300
commit67452923a5446108ee042f489f906199ebfb531e (patch)
treef8e3ca5e61da389595391825e3605b71c1e04d46
parent65646c5a125126bca97b0f5bf5f43c9544fd2cb2 (diff)
Hotfix for firefox to prevent loading on every scroll event.
-rw-r--r--src/components/timeline/timeline.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/timeline/timeline.js b/src/components/timeline/timeline.js
index 6070e442..7aaa81c8 100644
--- a/src/components/timeline/timeline.js
+++ b/src/components/timeline/timeline.js
@@ -46,7 +46,8 @@ const Timeline = {
}).then(() => store.commit('setLoading', { timeline: this.timelineName, value: false }))
},
scrollLoad (e) {
- if (this.timeline.loading === false && this.$store.state.config.autoLoad && (window.innerHeight + window.pageYOffset) >= (document.body.scrollHeight - 750)) {
+ let height = Math.max(document.body.offsetHeight, document.body.scrollHeight)
+ if (this.timeline.loading === false && this.$store.state.config.autoLoad && (window.innerHeight + window.pageYOffset) >= (height - 750)) {
this.fetchOlderStatuses()
}
}