* boilerplate, gulpfile, quickstart * move ts files up to cookbooks * move rest of ts files * fix tsconfig, default build task, json file * fix js examples * fix webpack example * remove a2docs.css references * fix aot examples * fix webpack run task * fix cb-i18n * fix upgrade examples * fix unit tests * fix comment in deployment index * removed unused typings.json * fix plunkers * fix js example paths * fix ts quickstart/setup prose * add src folder note to setup * broadly replace app/ -> src/app/ * broadly replace main.ts * broadly replaced index.html * broadly replace tsconfig * replace systemjs * fix filetrees * Minor prose fixes to aot, i18n cookbooks * remove char harp was complaining about * update new reactive forms example * fix quickstart jade error * fix mistakes uncovered by CI * fix bad filename errors * edit style guide 04-06 rule to use src * add changelog * Incorporate Jesus's feedback * fix snippet headers in toh1/2 * chore: tweak changelog and setup text
28 lines
800 B
HTML
28 lines
800 B
HTML
<!-- #docregion -->
|
|
<!-- #docregion v2 -->
|
|
<h1>My First Attribute Directive</h1>
|
|
|
|
<h4>Pick a highlight color</h4>
|
|
<div>
|
|
<input type="radio" name="colors" (click)="color='lightgreen'">Green
|
|
<input type="radio" name="colors" (click)="color='yellow'">Yellow
|
|
<input type="radio" name="colors" (click)="color='cyan'">Cyan
|
|
</div>
|
|
<!-- #docregion color -->
|
|
<p [myHighlight]="color">Highlight me!</p>
|
|
<!-- #enddocregion color -->
|
|
<!-- #enddocregion v2 -->
|
|
|
|
<!-- #docregion defaultColor -->
|
|
<p [myHighlight]="color" defaultColor="violet">
|
|
Highlight me too!
|
|
</p>
|
|
<!-- #enddocregion defaultColor -->
|
|
<!-- #enddocregion -->
|
|
|
|
<hr>
|
|
<p><i>Mouse over the following lines to see fixed highlights</i></p>
|
|
|
|
<p [myHighlight]="'yellow'">Highlighted in yellow</p>
|
|
<p myHighlight="orange">Highlighted in orange</p>
|