diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-12-01 16:17:32 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-12-01 16:17:32 +0100 |
commit | 2bbb34127fccd187ed690949b6791e49fdd77194 (patch) | |
tree | d9ebcc72ab5e1d439f08e73881dc62baecb3bc36 /client/src/app/videos/videos.module.ts | |
parent | 9bf9d2a5c223bf006496ae7adf0c0bd7a7975108 (diff) | |
download | PeerTube-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.ts | 4 |
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 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | import { InfiniteScrollModule } from 'ngx-infinite-scroll' | ||
2 | import { SharedModule } from '../shared' | 3 | import { SharedModule } from '../shared' |
3 | import { VideoService } from './shared' | 4 | import { VideoService } from './shared' |
4 | import { MyVideosComponent, VideoMiniatureComponent } from './video-list' | 5 | import { 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: [ |