use RoomView.ScrollToBottom instead of reimplementing it

This commit is contained in:
Richard van der Hoff 2015-12-16 13:31:36 +00:00
parent 8aaef34319
commit f24b7ba67c

View File

@ -129,10 +129,7 @@ module.exports = React.createClass({
// Call state has changed so we may be loading video elements
// which will obscure the message log.
// scroll to bottom
var scrollNode = this._getScrollNode();
if (scrollNode) {
scrollNode.scrollTop = scrollNode.scrollHeight;
}
this.scrollToBottom();
callState = call.call_state;
}
else {
@ -287,12 +284,8 @@ module.exports = React.createClass({
messagePanel.addEventListener('dragleave', this.onDragLeaveOrEnd);
messagePanel.addEventListener('dragend', this.onDragLeaveOrEnd);
var messageWrapperScroll = this._getScrollNode();
messageWrapperScroll.scrollTop = messageWrapperScroll.scrollHeight;
this.scrollToBottom();
this.sendReadReceipt();
this.fillSpace();
}