Skip to content

Commit

Permalink
fix(select): Select options w/ mouse events, closes #1251
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Bradley committed May 1, 2014
1 parent 05a6d7c commit e330629
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/utils/tap.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ function tapMouseUp(e) {
return false;
}

if( tapIgnoreEvent(e) ) return;
if( tapIgnoreEvent(e) || e.target.tagName === 'SELECT' ) return;

if( !tapHasPointerMoved(e) ) {
tapClick(e);
Expand Down

0 comments on commit e330629

Please sign in to comment.