Skip to content
Snippets Groups Projects
Commit b4968f6b authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms Committed by Jan-Hendrik Willms
Browse files

fixes #3817

Closes #3817

Merge request !2682
parent 207ae6ca
No related branches found
No related tags found
No related merge requests found
...@@ -148,11 +148,11 @@ export default { ...@@ -148,11 +148,11 @@ export default {
this.scrolled = el.scrollTop > 0; this.scrolled = el.scrollTop > 0;
if (this.threadMoreUp && el.scrollTop < 1000) { if (this.moreCommentsUp && el.scrollTop < 1000) {
this.$emit('load-older'); this.$emit('load-older');
} }
if (this.threadMoreDown && el.scrollTop > threadPostingHeight - 1000) { if (this.moreCommentsDown && el.scrollTop > threadPostingHeight - 1000) {
this.$emit('load-newer'); this.$emit('load-newer');
} }
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment