examples: consistently quote event binding expressions (#3118)

Note how the `user-input/ts/app/little-tour.component.ts` click binding
had no quotes whatsoever.

Cf. https://github.com/dart-lang/site-webdev/issues/285
This commit is contained in:
Patrice Chalin 2017-01-20 08:39:14 -08:00 committed by Filipe Silva
parent 2aa46a9c17
commit 276867e899
3 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ import { UserService } from './user.service';
<h2>User</h2>
<p id="user">
{{userInfo}}
<button (click)='nextUser()'>Next User</button>
<button (click)="nextUser()">Next User</button>
<p>
<my-heroes id="authorized" *ngIf="isAuthorized"></my-heroes>
<my-heroes id="unauthorized" *ngIf="!isAuthorized"></my-heroes>

View File

@ -346,7 +346,7 @@ export class MyIfChildComponent implements OnInit, OnChanges, OnDestroy {
<label>Parent value:
<input [(ngModel)]="parentValue">
</label>
<button (click)='clicked()'>{{toggleLabel}} Child</button><br>
<button (click)="clicked()">{{toggleLabel}} Child</button><br>
<div *ngIf="showChild"
style="margin: 4px; padding: 4px; background-color: aliceblue;">
<my-if-child-1 [(value)]="parentValue"></my-if-child-1>

View File

@ -9,7 +9,7 @@ import { Component } from '@angular/core';
(keyup.enter)="addHero(newHero.value)"
(blur)="addHero(newHero.value); newHero.value='' ">
<button (click)=addHero(newHero.value)>Add</button>
<button (click)="addHero(newHero.value)">Add</button>
<ul><li *ngFor="let hero of heroes">{{hero}}</li></ul>
`