comment what a CR is

pull/296/head
Matthew Hodgson 2015-10-30 18:22:21 +00:00
parent ddbc8dffb3
commit 75bc878657
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ module.exports = React.createClass({
},
onSearchChange: function(e) {
if (e.keyCode === 13) {
if (e.keyCode === 13) { // on enter...
this.props.onSearch(this.refs.search_term.getDOMNode().value, this.state.scope);
}
},