summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-07-14 20:35:52 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-07-16 08:10:19 -0700
commit15b90ff72f7db4d611c5c5035e2d8cd310d4deff (patch)
tree4c09495998577a21f24c3c3f0651f1bf4531fcdf /web
parentcbcf44ac8506d316d57a7e0bb30baad258618bdb (diff)
downloadchat-15b90ff72f7db4d611c5c5035e2d8cd310d4deff.tar.gz
chat-15b90ff72f7db4d611c5c5035e2d8cd310d4deff.tar.bz2
chat-15b90ff72f7db4d611c5c5035e2d8cd310d4deff.zip
Added missing semi-colons
Diffstat (limited to 'web')
-rw-r--r--web/react/components/mention.jsx2
-rw-r--r--web/react/components/mention_list.jsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/mention.jsx b/web/react/components/mention.jsx
index 24098516e..f5ca4ce6d 100644
--- a/web/react/components/mention.jsx
+++ b/web/react/components/mention.jsx
@@ -7,7 +7,7 @@ module.exports = React.createClass({
this.props.handleClick(this.props.username);
},
select: function() {
- this.setState({ isFocused: "mentions-focus" })
+ this.setState({ isFocused: "mentions-focus" });
},
deselect: function() {
this.setState({ isFocused: "" });
diff --git a/web/react/components/mention_list.jsx b/web/react/components/mention_list.jsx
index 1852a3ebc..1df7a8298 100644
--- a/web/react/components/mention_list.jsx
+++ b/web/react/components/mention_list.jsx
@@ -30,7 +30,7 @@ module.exports = React.createClass({
e.stopPropagation();
e.preventDefault();
- var tempSelectedMention = -1
+ var tempSelectedMention = -1;
self.refs['mention' + self.state.selectedMention].deselect();
if (e.which === 38) {
if (self.getSelection(self.state.selectedMention - 1))