summaryrefslogtreecommitdiffstats
path: root/webapp/components/channel_switch_modal.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/channel_switch_modal.jsx')
-rw-r--r--webapp/components/channel_switch_modal.jsx10
1 files changed, 9 insertions, 1 deletions
diff --git a/webapp/components/channel_switch_modal.jsx b/webapp/components/channel_switch_modal.jsx
index 18e0f9f59..a962b5880 100644
--- a/webapp/components/channel_switch_modal.jsx
+++ b/webapp/components/channel_switch_modal.jsx
@@ -16,7 +16,7 @@ import * as Utils from 'utils/utils.jsx';
import * as ChannelActions from 'actions/channel_actions.jsx';
import React from 'react';
-
+import $ from 'jquery';
export default class SwitchChannelModal extends React.Component {
constructor() {
super();
@@ -24,6 +24,7 @@ export default class SwitchChannelModal extends React.Component {
this.onInput = this.onInput.bind(this);
this.onShow = this.onShow.bind(this);
this.onHide = this.onHide.bind(this);
+ this.onExited = this.onExited.bind(this);
this.handleKeyDown = this.handleKeyDown.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
this.suggestionProviders = [new SwitchChannelProvider()];
@@ -57,6 +58,12 @@ export default class SwitchChannelModal extends React.Component {
this.props.onHide();
}
+ onExited() {
+ setTimeout(() => {
+ $('#post_textbox').get(0).focus();
+ });
+ }
+
onInput(e) {
this.setState({text: e.target.value});
}
@@ -99,6 +106,7 @@ export default class SwitchChannelModal extends React.Component {
ref='modal'
show={this.props.show}
onHide={this.onHide}
+ onExited={this.onExited}
>
<Modal.Header closeButton={true}>
<Modal.Title>