diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-09-06 22:40:57 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-09-06 22:40:57 +0200 |
commit | ab32b0fc805b92c5a1d7ac5901cb1a38e94622ca (patch) | |
tree | 1749a7390cf0a726a179c5fa554053f5c0f0e51c /client/src/app/app.component.ts | |
parent | 088a967fe0bc285aa7811515f6a9655e1144b9f9 (diff) | |
download | PeerTube-ab32b0fc805b92c5a1d7ac5901cb1a38e94622ca.tar.gz PeerTube-ab32b0fc805b92c5a1d7ac5901cb1a38e94622ca.tar.zst PeerTube-ab32b0fc805b92c5a1d7ac5901cb1a38e94622ca.zip |
Dirty update to Angular RC6
Diffstat (limited to 'client/src/app/app.component.ts')
-rw-r--r-- | client/src/app/app.component.ts | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts index 9d05c272f..e81993a3f 100644 --- a/client/src/app/app.component.ts +++ b/client/src/app/app.component.ts | |||
@@ -1,17 +1,10 @@ | |||
1 | import { Component } from '@angular/core'; | 1 | import { Component } from '@angular/core'; |
2 | import { Router, ROUTER_DIRECTIVES } from '@angular/router'; | 2 | import { Router } from '@angular/router'; |
3 | |||
4 | import { MenuAdminComponent } from './admin'; | ||
5 | import { MenuComponent } from './menu.component'; | ||
6 | import { RestExtractor, RestService, SearchComponent, SearchService } from './shared'; | ||
7 | import { VideoService } from './videos'; | ||
8 | 3 | ||
9 | @Component({ | 4 | @Component({ |
10 | selector: 'my-app', | 5 | selector: 'my-app', |
11 | template: require('./app.component.html'), | 6 | template: require('./app.component.html'), |
12 | styles: [ require('./app.component.scss') ], | 7 | styles: [ require('./app.component.scss') ] |
13 | directives: [ MenuAdminComponent, MenuComponent, ROUTER_DIRECTIVES, SearchComponent ], | ||
14 | providers: [ RestExtractor, RestService, VideoService, SearchService ] | ||
15 | }) | 8 | }) |
16 | 9 | ||
17 | export class AppComponent { | 10 | export class AppComponent { |