7733ef221c244b5f36a67d52abda07b4240d4040
[oweals/peertube.git] / client / src / app / shared / video / video-feed.component.html
1 <div class="video-feed">
2   <span *ngIf="(syndicationItems | myObjectLength) >= 1" class="icon icon-syndication" 
3     [popover]="feedsList"
4     placement="bottom"
5     [outsideClick]="true">
6   </span>
7
8   <ng-template #feedsList>
9     <div *ngFor="let key of syndicationItems | keys">
10       <a [href]="syndicationItems[key]">{{ key }}</a>
11     </div>
12   </ng-template>
13 </div>
14