summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsamogot <samogot@gmail.com>2016-04-28 15:26:44 +0300
committerJoram Wilander <jwawilander@gmail.com>2016-04-28 08:26:44 -0400
commitb49dc28d7e346e775bd75d1cce8046149440c0a4 (patch)
treed212a49237a7bae8899063084fd158ea9130a793
parentcb1f605f8795c2d9aaef8ee9382994d432cd5811 (diff)
downloadchat-b49dc28d7e346e775bd75d1cce8046149440c0a4.tar.gz
chat-b49dc28d7e346e775bd75d1cce8046149440c0a4.tar.bz2
chat-b49dc28d7e346e775bd75d1cce8046149440c0a4.zip
Allow autocorrection in textbox (#2730)
* remove autocorrect=off attribute from textbox, allowing word suggestion in android keyboards * autocomplete attribute is also involved for this keyboard feature
-rw-r--r--webapp/components/textbox.jsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/webapp/components/textbox.jsx b/webapp/components/textbox.jsx
index c77e1f9a3..4aa88d267 100644
--- a/webapp/components/textbox.jsx
+++ b/webapp/components/textbox.jsx
@@ -187,8 +187,6 @@ export default class Textbox extends React.Component {
className={`form-control custom-textarea ${this.state.connection}`}
type='textarea'
spellCheck='true'
- autoComplete='off'
- autoCorrect='off'
maxLength={Constants.MAX_POST_LEN}
placeholder={this.props.createMessage}
value={this.props.messageText}