aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video/video-feed.component.html
blob: 7733ef221c244b5f36a67d52abda07b4240d4040 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="video-feed">
  <span *ngIf="(syndicationItems | myObjectLength) >= 1" class="icon icon-syndication" 
    [popover]="feedsList"
    placement="bottom"
    [outsideClick]="true">
  </span>

  <ng-template #feedsList>
    <div *ngFor="let key of syndicationItems | keys">
      <a [href]="syndicationItems[key]">{{ key }}</a>
    </div>
  </ng-template>
</div>