mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
fix(select): Select options w/ mouse events, closes #1251
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user