Skip to content

Commit b814314

Browse files
committed
fix(input): add tappable attr to input-cover
1 parent 860b685 commit b814314

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ionic/components/input/input.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ import {Platform} from '../../platform/platform';
6868
'<input [type]="type" [(ngModel)]="_value" [placeholder]="placeholder" class="text-input">' +
6969
'<input [type]="type" aria-hidden="true" next-input *ngIf="_useAssist">' +
7070
'<button clear *ngIf="clearInput && value" class="text-input-clear-icon" (click)="clearTextInput()" (mousedown)="clearTextInput()"></button>' +
71-
'<div (touchstart)="pointerStart($event)" (touchend)="pointerEnd($event)" (mousedown)="pointerStart($event)" (mouseup)="pointerEnd($event)" class="input-cover" *ngIf="_useAssist"></div>',
71+
'<div (touchstart)="pointerStart($event)" (touchend)="pointerEnd($event)" (mousedown)="pointerStart($event)" (mouseup)="pointerEnd($event)" class="input-cover" tappable *ngIf="_useAssist"></div>',
7272
directives: [
7373
NgIf,
7474
NextInput,

0 commit comments

Comments
 (0)