forked from treehouse/mastodon
Merge pull request #754 from ThibG/glitch-soc/fixes/scroll-compose-into-view
Scroll to textarea when composing a tootrebase/4.0.0rc2
commit
19968912fa
|
@ -347,6 +347,7 @@ class Composer extends React.Component {
|
|||
if (textarea) {
|
||||
textarea.setSelectionRange(selectionStart, selectionEnd);
|
||||
textarea.focus();
|
||||
textarea.scrollIntoView();
|
||||
}
|
||||
|
||||
// Refocuses the textarea after submitting.
|
||||
|
|
Loading…
Reference in New Issue