Guest User

Untitled

a guest
Feb 16th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.14 KB | None | 0 0
  1.           <mat-form-field>
  2.             <mat-chip-list #hashtagChipList>
  3.               <mat-chip *ngFor="let hashtag of addedHashtags" [removable]="true"
  4.                        (remove)="removeHashtag(hashtag)">
  5.                 #{{hashtag}}
  6.                 <mat-icon matChipRemove svgIcon="cancel"></mat-icon>
  7.               </mat-chip>
  8.               <input matInput placeholder="Хештеги" [matAutocomplete]="hashtagAutocomplete"
  9.                     [matChipInputFor]="hashtagChipList"
  10.                     [matChipInputSeparatorKeyCodes]="separatorKeyCodes"
  11.                     [matChipInputAddOnBlur]="true"
  12.                     (matChipInputTokenEnd)="addHashtagByChipInput($event)"
  13.                     (keyup)="filterHashtagList($event)">
  14.               <mat-autocomplete autoActiveFirstOption #hashtagAutocomplete
  15.                                [displayWith]="addHashtagByAutocomplete.bind(this)">
  16.                 <mat-option *ngFor="let hashtag of filteredHashtagList" [value]="hashtag">
  17.                   {{hashtag}}
  18.                 </mat-option>
  19.               </mat-autocomplete>
  20.             </mat-chip-list>
  21.           </mat-form-field>
Add Comment
Please, Sign In to add comment