From b49dc28d7e346e775bd75d1cce8046149440c0a4 Mon Sep 17 00:00:00 2001 From: samogot Date: Thu, 28 Apr 2016 15:26:44 +0300 Subject: [PATCH] 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 --- webapp/components/textbox.jsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/webapp/components/textbox.jsx b/webapp/components/textbox.jsx index c77e1f9a3e..4aa88d2671 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}