Merge pull request #1682 from Nostradamos/fix_riot_web_4821

Make scroll on paste in RTE compatible with https://github.com/vector-im/riot-web/pull/5900
pull/21833/head
Luke Barnard 2018-01-03 15:48:43 +00:00 committed by GitHub
commit d3e47fa99d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -512,7 +512,8 @@ export default class MessageComposerInput extends React.Component {
// composer. For some reason the editor won't scroll automatically if we paste
// blocks of text in or insert newlines.
if (textContent.slice(selection.start).indexOf("\n") === -1) {
this.refs.editor.refs.editor.scrollTop = this.refs.editor.refs.editor.scrollHeight;
let editorRoot = this.refs.editor.refs.editor.parentNode.parentNode;
editorRoot.scrollTop = editorRoot.scrollHeight;
}
});
}