Skip to content

Commit

Permalink
fix(input): add tappable attr to input-cover
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Mar 7, 2016
1 parent 860b685 commit b814314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ionic/components/input/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ import {Platform} from '../../platform/platform';
'<input [type]="type" [(ngModel)]="_value" [placeholder]="placeholder" class="text-input">' +
'<input [type]="type" aria-hidden="true" next-input *ngIf="_useAssist">' +
'<button clear *ngIf="clearInput && value" class="text-input-clear-icon" (click)="clearTextInput()" (mousedown)="clearTextInput()"></button>' +
'<div (touchstart)="pointerStart($event)" (touchend)="pointerEnd($event)" (mousedown)="pointerStart($event)" (mouseup)="pointerEnd($event)" class="input-cover" *ngIf="_useAssist"></div>',
'<div (touchstart)="pointerStart($event)" (touchend)="pointerEnd($event)" (mousedown)="pointerStart($event)" (mouseup)="pointerEnd($event)" class="input-cover" tappable *ngIf="_useAssist"></div>',
directives: [
NgIf,
NextInput,
Expand Down

0 comments on commit b814314

Please sign in to comment.