diff options
author | Koala Yeung <koalay@gmail.com> | 2017-04-15 08:57:26 +0800 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-15 02:57:26 +0200 |
commit | 08059ddda96496e5f3e257edbbecab43404faee7 (patch) | |
tree | 1725b7a96df6c67b4547c61afac49bbb8e29ec4c /app/assets/javascripts/components/features/compose | |
parent | a3aa9381c4651b024c90cb0dd8a86346c8af2146 (diff) |
jslint: fix jslint warnings (#1704)
* jslint: remove trailing space * jslint: fix no-nested-ternary issue Follow the jslint [no-nested-ternary](http://eslint.org/docs/rules/no-nested-ternary) rule. Rewritten ternary with if-then.
Diffstat (limited to 'app/assets/javascripts/components/features/compose')
-rw-r--r-- | app/assets/javascripts/components/features/compose/components/compose_form.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/features/compose/components/compose_form.jsx b/app/assets/javascripts/components/features/compose/components/compose_form.jsx index d2e65359f..c7df22765 100644 --- a/app/assets/javascripts/components/features/compose/components/compose_form.jsx +++ b/app/assets/javascripts/components/features/compose/components/compose_form.jsx @@ -92,7 +92,7 @@ const ComposeForm = React.createClass({ }, componentDidUpdate (prevProps) { - // This statement does several things: + // This statement does several things: // - If we're beginning a reply, and, // - Replying to zero or one users, places the cursor at the end of the textbox. // - Replying to more than one user, selects any usernames past the first; |