loadMoreMessages: Fix broken reference to this.view.outerHeight

:0/

FREEBIE
This commit is contained in:
Scott Nonnenberg 2017-06-01 19:15:52 -07:00
parent f901fefb85
commit 0c2c36c11a

View file

@ -332,7 +332,7 @@
var endingHeight = this.view.scrollHeight;
var delta = endingHeight - startingHeight;
var newScrollPosition = this.view.scrollPosition + delta - this.view.
var newScrollPosition = this.view.scrollPosition + delta - this.view.outerHeight;
this.view.$el.scrollTop(newScrollPosition);
}.bind(this), 1);
}.bind(this));