aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/videos.module.ts
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-12-01 16:17:32 +0100
committerChocobozzz <florian.bigard@gmail.com>2017-12-01 16:17:32 +0100
commit2bbb34127fccd187ed690949b6791e49fdd77194 (patch)
treed9ebcc72ab5e1d439f08e73881dc62baecb3bc36 /client/src/app/videos/videos.module.ts
parent9bf9d2a5c223bf006496ae7adf0c0bd7a7975108 (diff)
downloadPeerTube-2bbb34127fccd187ed690949b6791e49fdd77194.tar.gz
PeerTube-2bbb34127fccd187ed690949b6791e49fdd77194.tar.zst
PeerTube-2bbb34127fccd187ed690949b6791e49fdd77194.zip
Add auto scroll to videos list
Diffstat (limited to 'client/src/app/videos/videos.module.ts')
-rw-r--r--client/src/app/videos/videos.module.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/src/app/videos/videos.module.ts b/client/src/app/videos/videos.module.ts
index 93193000c..f3981d275 100644
--- a/client/src/app/videos/videos.module.ts
+++ b/client/src/app/videos/videos.module.ts
@@ -1,4 +1,5 @@
1import { NgModule } from '@angular/core' 1import { NgModule } from '@angular/core'
2import { InfiniteScrollModule } from 'ngx-infinite-scroll'
2import { SharedModule } from '../shared' 3import { SharedModule } from '../shared'
3import { VideoService } from './shared' 4import { VideoService } from './shared'
4import { MyVideosComponent, VideoMiniatureComponent } from './video-list' 5import { MyVideosComponent, VideoMiniatureComponent } from './video-list'
@@ -10,7 +11,8 @@ import { VideosComponent } from './videos.component'
10@NgModule({ 11@NgModule({
11 imports: [ 12 imports: [
12 VideosRoutingModule, 13 VideosRoutingModule,
13 SharedModule 14 SharedModule,
15 InfiniteScrollModule
14 ], 16 ],
15 17
16 declarations: [ 18 declarations: [