Merge pull request #124 from ajohnson23/messages_scrolldown_fix

Fix improper scrolldown button display issue.
pull/21833/head
Richard van der Hoff 2016-02-01 11:38:14 +01:00
commit 2c04b9cb5b
1 changed files with 2 additions and 2 deletions

View File

@ -160,8 +160,8 @@ module.exports = React.createClass({
// content. So don't call it in render() cycles.
isAtBottom: function() {
var sn = this._getScrollNode();
// + 1 here to avoid fractional pixel rounding errors
return sn.scrollHeight - sn.scrollTop <= sn.clientHeight + 1;
// + 2 here to avoid fractional pixel rounding errors
return sn.scrollHeight - sn.scrollTop <= sn.clientHeight + 2;
},
// check the scroll state and send out backfill requests if necessary.