Skip to content

Commit

Permalink
fix russian b letter
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay Shevlyakov committed Feb 5, 2016
1 parent 7188b4d commit a61124f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/Select.js
Original file line number Diff line number Diff line change
Expand Up @@ -420,15 +420,15 @@ var Select = React.createClass({
this.focusNextOption();
break;

case 188: // ,
if (this.props.allowCreate && this.props.multi) {
event.preventDefault();
event.stopPropagation();
this.selectFocusedOption();
} else {
return;
}
break;
// case 188: // ,
// if (this.props.allowCreate && this.props.multi) {
// event.preventDefault();
// event.stopPropagation();
// this.selectFocusedOption();
// } else {
// return;
// }
// break;

default: return;
}
Expand Down

0 comments on commit a61124f

Please sign in to comment.