diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-04-29 16:51:40 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-04-29 16:51:40 +0200 |
commit | eb4e088abfc24882cc4e8b975a3c5f6551fbed07 (patch) | |
tree | bc05e946d79140d9ead6a684e9237ae29d1631fe /client | |
parent | 9ced64e08fb37dc2924eb80a9e8b34e668cd2756 (diff) | |
download | PeerTube-eb4e088abfc24882cc4e8b975a3c5f6551fbed07.tar.gz PeerTube-eb4e088abfc24882cc4e8b975a3c5f6551fbed07.tar.zst PeerTube-eb4e088abfc24882cc4e8b975a3c5f6551fbed07.zip |
Update client dependencies
Diffstat (limited to 'client')
-rw-r--r-- | client/angular/app/app.component.ts | 5 | ||||
-rw-r--r-- | client/angular/videos/components/list/videos-list.component.html | 2 | ||||
-rw-r--r-- | client/package.json | 10 |
3 files changed, 7 insertions, 10 deletions
diff --git a/client/angular/app/app.component.ts b/client/angular/app/app.component.ts index da9959836..c04e480a1 100644 --- a/client/angular/app/app.component.ts +++ b/client/angular/app/app.component.ts | |||
@@ -40,10 +40,7 @@ import { AuthStatus } from '../users/models/authStatus'; | |||
40 | templateUrl: 'app/angular/app/app.component.html', | 40 | templateUrl: 'app/angular/app/app.component.html', |
41 | styleUrls: [ 'app/angular/app/app.component.css' ], | 41 | styleUrls: [ 'app/angular/app/app.component.css' ], |
42 | directives: [ ROUTER_DIRECTIVES ], | 42 | directives: [ ROUTER_DIRECTIVES ], |
43 | providers: [ ROUTER_PROVIDERS, HTTP_PROVIDERS, | 43 | providers: [ ROUTER_PROVIDERS, HTTP_PROVIDERS, VideosService, FriendsService, AuthService ] |
44 | ElementRef, VideosService, FriendsService, | ||
45 | AuthService | ||
46 | ] | ||
47 | }) | 44 | }) |
48 | 45 | ||
49 | export class AppComponent { | 46 | export class AppComponent { |
diff --git a/client/angular/videos/components/list/videos-list.component.html b/client/angular/videos/components/list/videos-list.component.html index 9e51675dd..4eeacbc77 100644 --- a/client/angular/videos/components/list/videos-list.component.html +++ b/client/angular/videos/components/list/videos-list.component.html | |||
@@ -1,5 +1,5 @@ | |||
1 | <div *ngIf="videos.length === 0">There is no video.</div> | 1 | <div *ngIf="videos.length === 0">There is no video.</div> |
2 | <div *ngFor="#video of videos" class="video"> | 2 | <div *ngFor="let video of videos" class="video"> |
3 | <div> | 3 | <div> |
4 | <a [routerLink]="['VideosWatch', { id: video.id }]" class="video_name">{{ video.name }}</a> | 4 | <a [routerLink]="['VideosWatch', { id: video.id }]" class="video_name">{{ video.name }}</a> |
5 | <span class="video_pod_url">{{ video.podUrl }}</span> | 5 | <span class="video_pod_url">{{ video.podUrl }}</span> |
diff --git a/client/package.json b/client/package.json index d44ea8ff0..0638acaac 100644 --- a/client/package.json +++ b/client/package.json | |||
@@ -21,8 +21,8 @@ | |||
21 | }, | 21 | }, |
22 | "license": "ISC", | 22 | "license": "ISC", |
23 | "dependencies": { | 23 | "dependencies": { |
24 | "angular-pipes": "^1.4.1", | 24 | "angular-pipes": "^1.5.0", |
25 | "angular2": "2.0.0-beta.14", | 25 | "angular2": "2.0.0-beta.17", |
26 | "blueimp-file-upload": "^9.12.1", | 26 | "blueimp-file-upload": "^9.12.1", |
27 | "bootstrap-sass": "^3.3.6", | 27 | "bootstrap-sass": "^3.3.6", |
28 | "es6-promise": "^3.0.2", | 28 | "es6-promise": "^3.0.2", |
@@ -30,15 +30,15 @@ | |||
30 | "jquery": "^2.2.3", | 30 | "jquery": "^2.2.3", |
31 | "jquery.ui.widget": "^1.10.3", | 31 | "jquery.ui.widget": "^1.10.3", |
32 | "reflect-metadata": "0.1.2", | 32 | "reflect-metadata": "0.1.2", |
33 | "rxjs": "5.0.0-beta.2", | 33 | "rxjs": "5.0.0-beta.6", |
34 | "systemjs": "0.19.26", | 34 | "systemjs": "0.19.26", |
35 | "webtorrent": "^0.89.0", | 35 | "webtorrent": "^0.89.0", |
36 | "zone.js": "0.6.10" | 36 | "zone.js": "0.6.12" |
37 | }, | 37 | }, |
38 | "devDependencies": { | 38 | "devDependencies": { |
39 | "codelyzer": "0.0.12", | 39 | "codelyzer": "0.0.12", |
40 | "tslint": "^3.7.4", | 40 | "tslint": "^3.7.4", |
41 | "typescript": "^1.8.10", | 41 | "typescript": "^1.8.10", |
42 | "typings": "^0.7.12" | 42 | "typings": "^0.8.1" |
43 | } | 43 | } |
44 | } | 44 | } |