Skip to content

Commit e330629

Browse files
author
Adam Bradley
committed
fix(select): Select options w/ mouse events, closes #1251
1 parent 05a6d7c commit e330629

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/utils/tap.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ function tapMouseUp(e) {
254254
return false;
255255
}
256256

257-
if( tapIgnoreEvent(e) ) return;
257+
if( tapIgnoreEvent(e) || e.target.tagName === 'SELECT' ) return;
258258

259259
if( !tapHasPointerMoved(e) ) {
260260
tapClick(e);

0 commit comments

Comments
 (0)