mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Added missing semi-colons
This commit is contained in:
@@ -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: "" });
|
||||
|
||||
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user