From 8b4402e8a52a8c750b7182e77ac5a4c8ba043020 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Fri, 19 May 2017 12:00:21 -0700 Subject: [PATCH] Only show scroll down button if we're not at bottom of convo FREEBIE --- js/views/conversation_view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/views/conversation_view.js b/js/views/conversation_view.js index 16c950c8fa0a..725c1647f900 100644 --- a/js/views/conversation_view.js +++ b/js/views/conversation_view.js @@ -278,7 +278,7 @@ unreadEl.insertBefore(this.$('#' + oldestUnread.get('id'))); var position = unreadEl[0].scrollIntoView(true); - if (this.view.bottomOffset === 0) { + if (this.view.bottomOffset > 0) { this.addScrollDownButtonWithCount(unreadCount); } }