Only show scroll down button if we're not at bottom of convo
FREEBIE
This commit is contained in:
parent
4c7bfbe9ff
commit
8b4402e8a5
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue