Skip to content

Commit

Permalink
Fixed #242
Browse files Browse the repository at this point in the history
  • Loading branch information
Çağatay Çivici committed Apr 26, 2016
1 parent 8cc2676 commit 738a943
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/autocomplete/autocomplete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ const AUTOCOMPLETE_VALUE_ACCESSOR: Provider = CONST_EXPR(
@Component({
selector: 'p-autoComplete',
template: `
<span [ngClass]="{'ui-autocomplete ui-widget':true,'ui-autocomplete-dd':dropdown}" [attr.style]="style" [attr.styleClass]="styleClass">
<input *ngIf="!multiple" #in pInputText type="text" [attr.style]="inputStyle" [attr.styleClass]="inputStyleClass"
<span [ngClass]="{'ui-autocomplete ui-widget':true,'ui-autocomplete-dd':dropdown}" [attr.style]="style" [attr.class]="styleClass">
<input *ngIf="!multiple" #in pInputText type="text" [attr.style]="inputStyle" [attr.class]="inputStyleClass"
[value]="value ? (field ? resolveFieldData(value)||value : value) : null" (input)="onInput($event)" (keydown)="onKeydown($event)" (blur)="onModelTouched()"
[attr.placeholder]="placeholder" [attr.size]="size" [attr.maxlength]="maxlength" [attr.readonly]="readonly" [disabled]="disabled"
><ul *ngIf="multiple" class="ui-autocomplete-multiple ui-widget ui-inputtext ui-state-default ui-corner-all" (click)="multiIn.focus()">
Expand Down

0 comments on commit 738a943

Please sign in to comment.