summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
Diffstat (limited to 'webapp')
-rw-r--r--webapp/components/post_view/components/post_list.jsx8
1 files changed, 8 insertions, 0 deletions
diff --git a/webapp/components/post_view/components/post_list.jsx b/webapp/components/post_view/components/post_list.jsx
index 10dad8a72..a5369454d 100644
--- a/webapp/components/post_view/components/post_list.jsx
+++ b/webapp/components/post_view/components/post_list.jsx
@@ -104,6 +104,10 @@ export default class PostList extends React.Component {
}
isAtBottom() {
+ if (!this.refs.postlist) {
+ return this.wasAtBottom;
+ }
+
// consider the view to be at the bottom if it's within this many pixels of the bottom
const atBottomMargin = 10;
@@ -135,6 +139,10 @@ export default class PostList extends React.Component {
// Postpone all DOM related calculations to next frame.
// scrollHeight etc might return wrong data at this point
setTimeout(() => {
+ if (!this.refs.postlist) {
+ return;
+ }
+
this.wasAtBottom = this.isAtBottom();
this.props.postListScrolled(this.isAtBottom());
this.prevScrollHeight = this.refs.postlist.scrollHeight;