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/shared/shared.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/shared/shared.module.ts')
-rw-r--r-- | client/src/app/shared/shared.module.ts | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/client/src/app/shared/shared.module.ts b/client/src/app/shared/shared.module.ts index c7ea6e603..7618748e9 100644 --- a/client/src/app/shared/shared.module.ts +++ b/client/src/app/shared/shared.module.ts | |||
@@ -6,21 +6,20 @@ import { RouterModule } from '@angular/router' | |||
6 | 6 | ||
7 | import { BsDropdownModule } from 'ngx-bootstrap/dropdown' | 7 | import { BsDropdownModule } from 'ngx-bootstrap/dropdown' |
8 | import { ModalModule } from 'ngx-bootstrap/modal' | 8 | import { ModalModule } from 'ngx-bootstrap/modal' |
9 | import { PaginationModule } from 'ngx-bootstrap/pagination' | ||
10 | import { ProgressbarModule } from 'ngx-bootstrap/progressbar' | 9 | import { ProgressbarModule } from 'ngx-bootstrap/progressbar' |
11 | import { BytesPipe, KeysPipe } from 'ngx-pipes' | 10 | import { BytesPipe, KeysPipe } from 'ngx-pipes' |
12 | import { SharedModule as PrimeSharedModule } from 'primeng/components/common/shared' | 11 | import { SharedModule as PrimeSharedModule } from 'primeng/components/common/shared' |
13 | import { DataTableModule } from 'primeng/components/datatable/datatable' | 12 | import { DataTableModule } from 'primeng/components/datatable/datatable' |
14 | 13 | ||
15 | import { AUTH_INTERCEPTOR_PROVIDER } from './auth' | 14 | import { AUTH_INTERCEPTOR_PROVIDER } from './auth' |
15 | import { FromNowPipe } from './misc/from-now.pipe' | ||
16 | import { LoaderComponent } from './misc/loader.component' | 16 | import { LoaderComponent } from './misc/loader.component' |
17 | import { NumberFormatterPipe } from './misc/number-formatter.pipe' | ||
17 | import { RestExtractor, RestService } from './rest' | 18 | import { RestExtractor, RestService } from './rest' |
18 | import { SearchComponent, SearchService } from './search' | 19 | import { SearchComponent, SearchService } from './search' |
19 | import { UserService } from './users' | 20 | import { UserService } from './users' |
20 | import { VideoAbuseService } from './video-abuse' | 21 | import { VideoAbuseService } from './video-abuse' |
21 | import { VideoBlacklistService } from './video-blacklist' | 22 | import { VideoBlacklistService } from './video-blacklist' |
22 | import { NumberFormatterPipe } from './misc/number-formatter.pipe' | ||
23 | import { FromNowPipe } from './misc/from-now.pipe' | ||
24 | 23 | ||
25 | @NgModule({ | 24 | @NgModule({ |
26 | imports: [ | 25 | imports: [ |
@@ -32,7 +31,6 @@ import { FromNowPipe } from './misc/from-now.pipe' | |||
32 | 31 | ||
33 | BsDropdownModule.forRoot(), | 32 | BsDropdownModule.forRoot(), |
34 | ModalModule.forRoot(), | 33 | ModalModule.forRoot(), |
35 | PaginationModule.forRoot(), | ||
36 | ProgressbarModule.forRoot(), | 34 | ProgressbarModule.forRoot(), |
37 | 35 | ||
38 | DataTableModule, | 36 | DataTableModule, |
@@ -57,7 +55,6 @@ import { FromNowPipe } from './misc/from-now.pipe' | |||
57 | 55 | ||
58 | BsDropdownModule, | 56 | BsDropdownModule, |
59 | ModalModule, | 57 | ModalModule, |
60 | PaginationModule, | ||
61 | ProgressbarModule, | 58 | ProgressbarModule, |
62 | DataTableModule, | 59 | DataTableModule, |
63 | PrimeSharedModule, | 60 | PrimeSharedModule, |