5d07a276b07baaf7a9d699fd1245f97be9dad5f2
[oweals/peertube.git] / client / src / app / shared / video / abstract-video-list.html
1 <div class="margin-content">
2   <div class="title-page title-page-single">
3     {{ titlePage }}
4   </div>
5
6   <div
7     infiniteScroll
8     [infiniteScrollUpDistance]="1.5"
9     [infiniteScrollDistance]="0.5"
10     (scrolled)="onNearOfBottom()"
11     (scrolledUp)="onNearOfTop()"
12   >
13     <my-video-miniature
14       class="ng-animate"
15       *ngFor="let video of videos" [video]="video" [user]="user"
16     >
17     </my-video-miniature>
18   </div>
19 </div>