Skip to content

Instantly share code, notes, and snippets.

@bacoords
Created October 9, 2020 02:40
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 bacoords/18b45243b19690def6fee3c3fcf14b7a to your computer and use it in GitHub Desktop.
Save bacoords/18b45243b19690def6fee3c3fcf14b7a to your computer and use it in GitHub Desktop.
<ion-list *ngIf="(videoCategories$ | async) as categories" class="ion-padding-start">
<ion-item (click)="getSelectedCategoryVideos('2380')">
Therapeutic Breakout Sessions
</ion-item>
<ion-item (click)="getSelectedCategoryVideos('2374')">
Online Breakout Sessions
</ion-item>
<ion-item *ngFor="let category of categories" (click)="getSelectedCategoryVideos(category.id)">
{{ category.name }}
</ion-item>
<ion-item (click)="getSelectedCategoryVideos('6')">
Foundation Interviews
</ion-item>
<ion-item (click)="getSelectedCategoryVideos('16')">
Public Awareness & Patient Stories
</ion-item>
<ion-item (click)="getSelectedCategoryVideos('15')">
Questions About NMO
</ion-item>
</ion-list>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment