]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/video/feed.component.html
Add miniature quick actions to add video to Watch later playlist
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / video / feed.component.html
CommitLineData
c5c09c1e
RK
1<div class="video-feed"
2 [ngbTooltip]="'Feeds available'"
3 placement="right auto"
4 container="body"
5>
457bb213 6 <my-global-icon
0bd84f8b 7 *ngIf="syndicationItems.length !== 0" [ngbPopover]="feedsList" [autoClose]="true" placement="bottom"
457bb213
C
8 class="icon-syndication" role="button" iconName="syndication"
9 >
10 </my-global-icon>
244e76a5
RK
11
12 <ng-template #feedsList>
63347a0f 13 <a *ngFor="let item of syndicationItems" [href]="item.url" target="_blank" rel="noopener noreferrer">{{ item.label }}</a>
244e76a5 14 </ng-template>
457bb213 15</div>