Textarea does not auto-expand on mobile anymore (autofocus only on desktop)

This commit is contained in:
Ondřej Hruška 2017-07-22 21:48:56 +02:00
parent 9b74a12045
commit 3ba7c1e725
1 changed files with 2 additions and 1 deletions

View File

@ -18,6 +18,7 @@ import UploadFormContainer from '../containers/upload_form_container';
import WarningContainer from '../containers/warning_container';
import ImmutablePureComponent from 'react-immutable-pure-component';
import { length } from 'stringz';
import { isMobile } from '../../../is_mobile';
const messages = defineMessages({
placeholder: { id: 'compose_form.placeholder', defaultMessage: 'What is on your mind?' },
@ -184,7 +185,7 @@ export default class ComposeForm extends ImmutablePureComponent {
onSuggestionsClearRequested={this.onSuggestionsClearRequested}
onSuggestionSelected={this.onSuggestionSelected}
onPaste={onPaste}
autoFocus={!showSearch}
autoFocus={!showSearch && isMobile(window.innerWidth)}
/>
<EmojiPickerDropdown onPickEmoji={this.handleEmojiPick} />