blob: c82642c1c9d4d7e4294ad503ab2e3a9f8d793d34 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<div class="other-videos">
<ng-container *ngIf="hasVideos$ | async">
<div class="d-flex title-page-container">
<div i18n class="title-page title-page-single">
Other videos
</div>
<div *ngIf="!playlist" class="d-flex title-page-autoplay">
<span i18n>Autoplay</span>
<p-inputSwitch [(ngModel)]="autoPlayNextVideo" (ngModelChange)="switchAutoPlayNextVideo()"></p-inputSwitch>
</div>
</div>
<div *ngFor="let video of (videos$ | async); let i = index; let length = count">
<my-video-miniature [video]="video" [user]="user" (videoBlacklisted)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()">
</my-video-miniature>
<hr *ngIf="!playlist && i == 0 && length > 1" />
</div>
</ng-container>
</div>
|