build(aio): lint examples

This commit is contained in:
Jesús Rodríguez
2017-05-03 19:31:02 +02:00
committed by Matias Niemelä
parent eb56ab38dc
commit 55b8de9fdd
35 changed files with 131 additions and 36 deletions

View File

@ -8,7 +8,7 @@ import 'rxjs/add/operator/delay';
@Injectable()
export class AuthService {
isLoggedIn: boolean = false;
isLoggedIn = false;
// store the URL so we can redirect after logging in
redirectUrl: string;

View File

@ -15,7 +15,7 @@ export class ComposeMessageComponent {
@HostBinding('style.position') position = 'absolute';
details: string;
sending: boolean = false;
sending = false;
constructor(private router: Router) {}