Fix tslint check

pull/10/head
Chocobozzz 2016-04-14 22:12:03 +02:00
parent 1553e15d82
commit 2e2bef6f58
3 changed files with 4 additions and 5 deletions

View File

@ -27,9 +27,8 @@ export class UserLoginComponent {
error => {
if (error.error === 'invalid_grant') {
alert('Credentials are invalid.');
}
else {
alert(`${error.error}: ${error.error_description}`)
} else {
alert(`${error.error}: ${error.error_description}`);
}
}
);

View File

@ -38,7 +38,7 @@ export class VideosListComponent implements OnInit {
getVideos() {
let observable = null;
if (this.search !== null) {""
if (this.search !== null) {
observable = this._videosService.searchVideos(this.search);
} else {
observable = this._videosService.getVideos();

View File

@ -17,7 +17,7 @@
"tsc:w": "tsc -w",
"typings": "typings",
"postinstall": "typings install",
"test": "tslint -c ./tslint.json angular/**/*.ts angular/**/**/*.ts"
"test": "tslint -c ./tslint.json angular/**/*.ts angular/**/**/*.ts angular/**/**/**/*.ts"
},
"license": "ISC",
"dependencies": {