Skip to content

Commit

Permalink
Fix method signature mismatch in template & class
Browse files Browse the repository at this point in the history
  • Loading branch information
kulshekhar authored May 10, 2017
1 parent 4623ae5 commit a6566a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/searchbar/searchbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import { Platform } from '../../platform/platform';
'<ion-icon name="md-arrow-back"></ion-icon>' +
'</button>' +
'<div #searchbarIcon class="searchbar-search-icon"></div>' +
'<input #searchbarInput class="searchbar-input" (input)="inputChanged($event)" (blur)="inputBlurred($event)" (focus)="inputFocused($event)" ' +
'<input #searchbarInput class="searchbar-input" (input)="inputChanged($event)" (blur)="inputBlurred()" (focus)="inputFocused()" ' +
'[attr.placeholder]="placeholder" ' +
'[attr.type]="type" ' +
'[attr.autocomplete]="_autocomplete" ' +
Expand Down

0 comments on commit a6566a0

Please sign in to comment.