diff options
Diffstat (limited to 'client/src/app/shared/video')
-rw-r--r-- | client/src/app/shared/video/infinite-scroller.directive.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/shared/video/infinite-scroller.directive.ts b/client/src/app/shared/video/infinite-scroller.directive.ts index 0448e2c23..4dc1f86e7 100644 --- a/client/src/app/shared/video/infinite-scroller.directive.ts +++ b/client/src/app/shared/video/infinite-scroller.directive.ts | |||
@@ -11,7 +11,7 @@ export class InfiniteScrollerDirective implements OnInit, OnDestroy { | |||
11 | @Input() containerHeight: number | 11 | @Input() containerHeight: number |
12 | @Input() pageHeight: number | 12 | @Input() pageHeight: number |
13 | @Input() percentLimit = 70 | 13 | @Input() percentLimit = 70 |
14 | @Input() autoLoading = false | 14 | @Input() autoInit = false |
15 | 15 | ||
16 | @Output() nearOfBottom = new EventEmitter<void>() | 16 | @Output() nearOfBottom = new EventEmitter<void>() |
17 | @Output() nearOfTop = new EventEmitter<void>() | 17 | @Output() nearOfTop = new EventEmitter<void>() |
@@ -29,7 +29,7 @@ export class InfiniteScrollerDirective implements OnInit, OnDestroy { | |||
29 | } | 29 | } |
30 | 30 | ||
31 | ngOnInit () { | 31 | ngOnInit () { |
32 | if (this.autoLoading === true) return this.initialize() | 32 | if (this.autoInit === true) return this.initialize() |
33 | } | 33 | } |
34 | 34 | ||
35 | ngOnDestroy () { | 35 | ngOnDestroy () { |