Skip to content

Commit

Permalink
fix(select): don't simulate click. Fixes #8181
Browse files Browse the repository at this point in the history
  • Loading branch information
mlynch committed Oct 20, 2016
1 parent a47be46 commit 417997d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions js/utils/tap.js
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,10 @@ function tapIgnoreEvent(e) {
return true;
}

if(e.target.tagName == 'SELECT') {
return true;
}

if (ionic.scroll.isScrolling && ionic.tap.containsOrIsTextInput(e.target)) {
e.preventDefault();
return true;
Expand Down

0 comments on commit 417997d

Please sign in to comment.