fix(select): Select options w/ mouse events, closes #1251

This commit is contained in:
Adam Bradley
2014-05-01 12:37:21 -05:00
parent 05a6d7cca6
commit e3306293cc

View File

@@ -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);