diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-06-14 12:59:59 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-06-14 20:37:54 +0200 |
commit | e433386545e53f84a47f5c1b09a7c0aaafa978a3 (patch) | |
tree | f0e2744ca73a5214499c2ea1c8ed83c6b36cf2db /app/javascript/flavours/glitch/features/compose/components | |
parent | c0e5f32d13dfd696728dc1fa2ad9a93a27aa405f (diff) |
Fix replying not automatically switching to compose form on mobile
Diffstat (limited to 'app/javascript/flavours/glitch/features/compose/components')
-rw-r--r-- | app/javascript/flavours/glitch/features/compose/components/compose_form.js | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/app/javascript/flavours/glitch/features/compose/components/compose_form.js b/app/javascript/flavours/glitch/features/compose/components/compose_form.js index b4b43785a..5e73d7651 100644 --- a/app/javascript/flavours/glitch/features/compose/components/compose_form.js +++ b/app/javascript/flavours/glitch/features/compose/components/compose_form.js @@ -66,8 +66,6 @@ class ComposeForm extends ImmutablePureComponent { preselectOnReply: PropTypes.bool, onChangeSpoilerness: PropTypes.func, onChangeVisibility: PropTypes.func, - onMount: PropTypes.func, - onUnmount: PropTypes.func, onPaste: PropTypes.func, onMediaDescriptionConfirm: PropTypes.func, }; @@ -196,22 +194,6 @@ class ComposeForm extends ImmutablePureComponent { } } - // Tells our state the composer has been mounted. - componentDidMount () { - const { onMount } = this.props; - if (onMount) { - onMount(); - } - } - - // Tells our state the composer has been unmounted. - componentWillUnmount () { - const { onUnmount } = this.props; - if (onUnmount) { - onUnmount(); - } - } - handleFocus = () => { if (this.composeForm) { this.composeForm.scrollIntoView(); |