Skip to content

Commit

Permalink
release build after react-bootstrap#99
Browse files Browse the repository at this point in the history
  • Loading branch information
prakhar1989 committed Aug 22, 2016
1 parent 23e9b7f commit 478d077
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist-modules/reactTags.js
Expand Up @@ -169,7 +169,7 @@ var ReactTags = _react2.default.createClass({
// When one of the terminating keys is pressed, add current query to the tags.
// If no text is typed in so far, ignore the action - so we don't end up with a terminating
// character typed in.
if (this.props.delimiters.indexOf(e.keyCode) !== -1) {
if (this.props.delimiters.indexOf(e.keyCode) !== -1 && !e.shiftKey) {
if (e.keyCode !== Keys.TAB || query !== "") {
e.preventDefault();
}
Expand Down

0 comments on commit 478d077

Please sign in to comment.