use box-sizing: border-box to make clientHeight === actual height
This commit is contained in:
parent
c9d5c4903b
commit
018f3d2a5c
2 changed files with 5 additions and 1 deletions
|
@ -689,7 +689,7 @@ module.exports = React.createClass({
|
|||
blockShrinking: function() {
|
||||
const messageList = this.refs.itemlist;
|
||||
if (messageList) {
|
||||
const currentHeight = messageList.clientHeight - 18;
|
||||
const currentHeight = messageList.clientHeight;
|
||||
messageList.style.minHeight = `${currentHeight}px`;
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue