hopefully stop weird flickering bugs when pressing delete or zero-height textareas...

pull/21833/head
Matthew Hodgson 2016-03-17 02:16:39 +00:00
parent 87e1bc2f07
commit 3326a50c4b
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ module.exports = React.createClass({
resizeInput: function() {
// scrollHeight is at least equal to clientHeight, so we have to
// temporarily crimp clientHeight to 0 to get an accurate scrollHeight value
this.refs.textarea.style.height = "0px";
this.refs.textarea.style.height = "20px"; // 20 hardcoded from CSS
var newHeight = Math.min(this.refs.textarea.scrollHeight,
this.constructor.MAX_HEIGHT);
this.refs.textarea.style.height = Math.ceil(newHeight) + "px";