@@ -358,7 +358,7 @@ function tapMouseDown(e) {
358358 if ( e . isIonicTap || tapIgnoreEvent ( e ) ) return null ;
359359
360360 if ( tapEnabledTouchEvents ) {
361- console . log ( 'mousedown' , 'stop event' ) ;
361+ // console.log('mousedown', 'stop event');
362362 e . stopPropagation ( ) ;
363363
364364 if ( ! ionic . Platform . isEdge ( ) && ( ! ionic . tap . isTextInput ( e . target ) || tapLastTouchTarget !== e . target ) &&
@@ -432,7 +432,7 @@ function tapTouchStart(e) {
432432 var textInput = tapTargetElement ( tapContainingElement ( e . target ) ) ;
433433 if ( textInput !== tapActiveEle ) {
434434 // don't preventDefault on an already focused input or else iOS's text caret isn't usable
435- console . log ( 'Would prevent default here' ) ;
435+ // console.log('Would prevent default here');
436436 e . preventDefault ( ) ;
437437 }
438438 }
@@ -507,7 +507,7 @@ function tapHandleFocus(ele) {
507507 // already is the active element and has focus
508508 triggerFocusIn = true ;
509509
510- } else if ( ( / ^ ( i n p u t | t e x t a r e a ) $ / i) . test ( ele . tagName ) || ele . isContentEditable ) {
510+ } else if ( ( / ^ ( i n p u t | t e x t a r e a | i o n - l a b e l ) $ / i) . test ( ele . tagName ) || ele . isContentEditable ) {
511511 triggerFocusIn = true ;
512512 ele . focus && ele . focus ( ) ;
513513 ele . value = ele . value ;
@@ -530,7 +530,7 @@ function tapHandleFocus(ele) {
530530function tapFocusOutActive ( ) {
531531 var ele = tapActiveElement ( ) ;
532532 if ( ele && ( ( / ^ ( i n p u t | t e x t a r e a | s e l e c t ) $ / i) . test ( ele . tagName ) || ele . isContentEditable ) ) {
533- console . log ( 'tapFocusOutActive' , ele . tagName ) ;
533+ // console.log('tapFocusOutActive', ele.tagName);
534534 ele . blur ( ) ;
535535 }
536536 tapActiveElement ( null ) ;
@@ -551,7 +551,7 @@ function tapFocusIn(e) {
551551 // 2) There is an active element which is a text input
552552 // 3) A text input was just set to be focused on by a touch event
553553 // 4) A new focus has been set, however the target isn't the one the touch event wanted
554- console . log ( 'focusin' , 'tapTouchFocusedInput' ) ;
554+ // console.log('focusin', 'tapTouchFocusedInput');
555555 tapTouchFocusedInput . focus ( ) ;
556556 tapTouchFocusedInput = null ;
557557 }
0 commit comments