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