mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 20:26:19 +02:00
hopefully stop weird flickering bugs when pressing delete or zero-height textareas...
This commit is contained in:
parent
87e1bc2f07
commit
3326a50c4b
@ -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";
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user