Added missing semi-colons

This commit is contained in:
Reed Garmsen
2015-07-14 20:35:52 -07:00
parent cbcf44ac85
commit 15b90ff72f
2 changed files with 2 additions and 2 deletions

View File

@@ -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: "" });

View File

@@ -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))