diff options
author | Chocobozzz <me@florianbigard.com> | 2018-09-18 08:21:04 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-09-18 08:21:04 +0200 |
commit | d5931e623320d0851a19e1001e90c7d8138d7a20 (patch) | |
tree | 67e7ddfbf13f4d4e99ad5c609cbf4c1df9d3e07e /client/src | |
parent | dae4a1c0f8d8af2528d7e04fef2b8b65b2d52122 (diff) | |
download | PeerTube-d5931e623320d0851a19e1001e90c7d8138d7a20.tar.gz PeerTube-d5931e623320d0851a19e1001e90c7d8138d7a20.tar.zst PeerTube-d5931e623320d0851a19e1001e90c7d8138d7a20.zip |
Fix client build
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/app/shared/video/abstract-video-list.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/shared/video/abstract-video-list.ts b/client/src/app/shared/video/abstract-video-list.ts index 9df4cfc22..53b044478 100644 --- a/client/src/app/shared/video/abstract-video-list.ts +++ b/client/src/app/shared/video/abstract-video-list.ts | |||
@@ -36,6 +36,7 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy { | |||
36 | videoHeight: number | 36 | videoHeight: number |
37 | videoPages: Video[][] = [] | 37 | videoPages: Video[][] = [] |
38 | ownerDisplayType: OwnerDisplayType = 'account' | 38 | ownerDisplayType: OwnerDisplayType = 'account' |
39 | firstLoadedPage: number | ||
39 | 40 | ||
40 | protected baseVideoWidth = 215 | 41 | protected baseVideoWidth = 215 |
41 | protected baseVideoHeight = 205 | 42 | protected baseVideoHeight = 205 |
@@ -55,7 +56,6 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy { | |||
55 | protected otherRouteParams = {} | 56 | protected otherRouteParams = {} |
56 | 57 | ||
57 | private resizeSubscription: Subscription | 58 | private resizeSubscription: Subscription |
58 | private firstLoadedPage: number | ||
59 | 59 | ||
60 | abstract getVideosObservable (page: number): Observable<{ videos: Video[], totalVideos: number}> | 60 | abstract getVideosObservable (page: number): Observable<{ videos: Video[], totalVideos: number}> |
61 | abstract generateSyndicationList () | 61 | abstract generateSyndicationList () |