Guest User

Untitled

a guest
Nov 24th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. ---html,true
  2. <ng-select [items]="items"
  3. notFoundText="No results found"
  4. typeToSearchText="Search for github account"
  5. bindLabel="login"
  6. [placeholder]="placeholder"
  7. [multiple]="multiple"
  8. [typeahead]="typeahead"
  9. [(ngModel)]="githubAccount">
  10. <ng-template ng-option-tmp let-item="item">
  11. <img [src]="item.avatar_url" width="20px" height="20px"> {{item.login}}
  12. </ng-template>
  13. </ng-select>
  14. ---
Add Comment
Please, Sign In to add comment