Only show scroll down button if we're not at bottom of convo

FREEBIE
pull/749/head
Scott Nonnenberg 8 years ago
parent 4c7bfbe9ff
commit 8b4402e8a5

@ -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);
}
}

Loading…
Cancel
Save