1
0
Fork 0

Update client dependencies

This commit is contained in:
Chocobozzz 2016-04-29 16:51:40 +02:00
parent 9ced64e08f
commit eb4e088abf
3 changed files with 7 additions and 10 deletions

View File

@ -40,10 +40,7 @@ import { AuthStatus } from '../users/models/authStatus';
templateUrl: 'app/angular/app/app.component.html', templateUrl: 'app/angular/app/app.component.html',
styleUrls: [ 'app/angular/app/app.component.css' ], styleUrls: [ 'app/angular/app/app.component.css' ],
directives: [ ROUTER_DIRECTIVES ], directives: [ ROUTER_DIRECTIVES ],
providers: [ ROUTER_PROVIDERS, HTTP_PROVIDERS, providers: [ ROUTER_PROVIDERS, HTTP_PROVIDERS, VideosService, FriendsService, AuthService ]
ElementRef, VideosService, FriendsService,
AuthService
]
}) })
export class AppComponent { export class AppComponent {

View File

@ -1,5 +1,5 @@
<div *ngIf="videos.length === 0">There is no video.</div> <div *ngIf="videos.length === 0">There is no video.</div>
<div *ngFor="#video of videos" class="video"> <div *ngFor="let video of videos" class="video">
<div> <div>
<a [routerLink]="['VideosWatch', { id: video.id }]" class="video_name">{{ video.name }}</a> <a [routerLink]="['VideosWatch', { id: video.id }]" class="video_name">{{ video.name }}</a>
<span class="video_pod_url">{{ video.podUrl }}</span> <span class="video_pod_url">{{ video.podUrl }}</span>

View File

@ -21,8 +21,8 @@
}, },
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"angular-pipes": "^1.4.1", "angular-pipes": "^1.5.0",
"angular2": "2.0.0-beta.14", "angular2": "2.0.0-beta.17",
"blueimp-file-upload": "^9.12.1", "blueimp-file-upload": "^9.12.1",
"bootstrap-sass": "^3.3.6", "bootstrap-sass": "^3.3.6",
"es6-promise": "^3.0.2", "es6-promise": "^3.0.2",
@ -30,15 +30,15 @@
"jquery": "^2.2.3", "jquery": "^2.2.3",
"jquery.ui.widget": "^1.10.3", "jquery.ui.widget": "^1.10.3",
"reflect-metadata": "0.1.2", "reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2", "rxjs": "5.0.0-beta.6",
"systemjs": "0.19.26", "systemjs": "0.19.26",
"webtorrent": "^0.89.0", "webtorrent": "^0.89.0",
"zone.js": "0.6.10" "zone.js": "0.6.12"
}, },
"devDependencies": { "devDependencies": {
"codelyzer": "0.0.12", "codelyzer": "0.0.12",
"tslint": "^3.7.4", "tslint": "^3.7.4",
"typescript": "^1.8.10", "typescript": "^1.8.10",
"typings": "^0.7.12" "typings": "^0.8.1"
} }
} }