chore(build): add tslint and unit tests to prerelease gulp task

closes #5755
This commit is contained in:
Josh Thomas
2016-04-13 15:40:20 -05:00
parent c4eed03630
commit ade93371a4
3 changed files with 28 additions and 14 deletions

View File

@@ -84,7 +84,7 @@ export class Img {
}
private _loaded(isLoaded: boolean) {
this._elementRef.nativeElement.classList[isLoaded ? 'add': 'remove']('img-loaded');
this._elementRef.nativeElement.classList[isLoaded ? 'add' : 'remove']('img-loaded');
}
enable(shouldEnable: boolean) {