1
0
Fork 0
peertube/client/src/app/shared/video/abstract-video-list.html

23 lines
516 B
HTML
Raw Normal View History

2017-12-01 16:38:26 +00:00
<div class="margin-content">
<div class="title-page title-page-single">
{{ titlePage }}
</div>
2016-05-23 09:07:42 +00:00
<div *ngIf="pagination.totalItems === 0">No results.</div>
2017-12-01 16:38:26 +00:00
<div
2017-12-11 07:50:43 +00:00
class="videos"
2017-12-01 16:38:26 +00:00
infiniteScroll
[infiniteScrollUpDistance]="1.5"
[infiniteScrollDistance]="0.5"
(scrolled)="onNearOfBottom()"
(scrolledUp)="onNearOfTop()"
2016-07-18 13:39:10 +00:00
>
2017-12-01 16:38:26 +00:00
<my-video-miniature
class="ng-animate"
2017-12-06 16:15:59 +00:00
*ngFor="let video of videos" [video]="video" [user]="user"
2017-12-01 16:38:26 +00:00
>
</my-video-miniature>
</div>
2016-05-22 08:43:06 +00:00
</div>