]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/video/abstract-video-list.html
Begin video watch design
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / video / abstract-video-list.html
CommitLineData
c30745f3
C
1<div class="margin-content">
2 <div class="title-page title-page-single">
3 {{ titlePage }}
4 </div>
cf20596c 5
c30745f3
C
6 <div
7 infiniteScroll
8 [infiniteScrollUpDistance]="1.5"
9 [infiniteScrollDistance]="0.5"
10 (scrolled)="onNearOfBottom()"
11 (scrolledUp)="onNearOfTop()"
bddab65a 12 >
c30745f3
C
13 <my-video-miniature
14 class="ng-animate"
b1fa3eba 15 *ngFor="let video of videos" [video]="video" [user]="user"
c30745f3
C
16 >
17 </my-video-miniature>
18 </div>
32294074 19</div>