Skip to content

Instantly share code, notes, and snippets.

@matthieu-D
Last active June 23, 2017 20:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthieu-D/f53aa70a178c3fb78692587ec16504bc to your computer and use it in GitHub Desktop.
Save matthieu-D/f53aa70a178c3fb78692587ec16504bc to your computer and use it in GitHub Desktop.
<ion-item *ngFor="let contact of everybody | async">
<ion-icon item-start *ngIf="contact.phoneNumbers"
(click)="callContact(contact.phoneNumbers[0].value)"
ios="ios-call"
md="md-call"
tappable></ion-icon>
<ion-label>
{{contact.name.givenName}}
</ion-label>
</ion-item>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment