From e3306293cc62ff9ef931b4dc6d0b76c61ab247a2 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Thu, 1 May 2014 12:37:21 -0500 Subject: [PATCH] fix(select): Select options w/ mouse events, closes #1251 --- js/utils/tap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/utils/tap.js b/js/utils/tap.js index 7ec97a2cf7..f75da4ca2d 100644 --- a/js/utils/tap.js +++ b/js/utils/tap.js @@ -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);