closes #1807 - e2e tests now also cover the tax calculator. - Dart app updated to match TS (it had no sales tax calculator). - TS sample source cleanup (e.g. removed many unnecessary `docregions`). - Prose updated to include @kwalrath's revisions from a while ago, Ward's comments, and some of my edits as well. Contributes to #1598 and #1508.
10 lines
287 B
HTML
10 lines
287 B
HTML
<!--#docregion binding -->
|
|
<li>{{hero.name}}</li>
|
|
<hero-detail [hero]="selectedHero"></hero-detail>
|
|
<li (click)="selectHero(hero)"></li>
|
|
<!--#enddocregion binding -->
|
|
|
|
<!--#docregion structural -->
|
|
<li *ngFor="let hero of heroes"></li>
|
|
<hero-detail *ngIf="selectedHero"></hero-detail>
|