Skip to content

Commit

Permalink
Fix focusing of the input
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriy-fix committed Feb 27, 2018
1 parent 4e6e521 commit c32ef01
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/vaadin-combo-box-mixin.html
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@
const path = e.composedPath();
if (path.indexOf(this._clearElement) !== -1) {
this._clear();
this.focus();
} else if (path.indexOf(this.inputElement) !== -1) {
if (path.indexOf(this._toggleElement) > -1 && this.opened) {
this.close();
Expand Down

0 comments on commit c32ef01

Please sign in to comment.