diff options
Diffstat (limited to 'client/angular/videos/components/watch/videos-watch.component.ts')
-rw-r--r-- | client/angular/videos/components/watch/videos-watch.component.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/angular/videos/components/watch/videos-watch.component.ts b/client/angular/videos/components/watch/videos-watch.component.ts index 6e212e8bc..e551e1f9a 100644 --- a/client/angular/videos/components/watch/videos-watch.component.ts +++ b/client/angular/videos/components/watch/videos-watch.component.ts | |||
@@ -3,6 +3,8 @@ import { RouteParams, CanDeactivate, ComponentInstruction } from '@angular/route | |||
3 | 3 | ||
4 | import { BytesPipe } from 'angular-pipes/src/math/bytes.pipe'; | 4 | import { BytesPipe } from 'angular-pipes/src/math/bytes.pipe'; |
5 | 5 | ||
6 | import { LoaderComponent } from '../../loader.component'; | ||
7 | |||
6 | // TODO import it with systemjs | 8 | // TODO import it with systemjs |
7 | declare var WebTorrent: any; | 9 | declare var WebTorrent: any; |
8 | 10 | ||
@@ -13,6 +15,7 @@ import { VideosService } from '../../videos.service'; | |||
13 | selector: 'my-video-watch', | 15 | selector: 'my-video-watch', |
14 | templateUrl: 'app/angular/videos/components/watch/videos-watch.component.html', | 16 | templateUrl: 'app/angular/videos/components/watch/videos-watch.component.html', |
15 | styleUrls: [ 'app/angular/videos/components/watch/videos-watch.component.css' ], | 17 | styleUrls: [ 'app/angular/videos/components/watch/videos-watch.component.css' ], |
18 | directives: [ LoaderComponent ], | ||
16 | pipes: [ BytesPipe ] | 19 | pipes: [ BytesPipe ] |
17 | }) | 20 | }) |
18 | 21 | ||