Remove unnecessary closing anchor tag.

This commit is contained in:
Scott Hatcher
2015-10-19 13:51:41 -07:00
committed by Naomi Black
parent c1b6e3e335
commit 7165886a87
+3 -3
View File
@@ -131,7 +131,7 @@ include ../../../../_includes/_util-fns
code-example(format="linenums" language="html").
<li *ng-for="#hero of heroes">
<span class="badge">{{hero.id}}</span> {{hero.name}}</a>
<span class="badge">{{hero.id}}</span> {{hero.name}}
</li>
:markdown
@@ -222,7 +222,7 @@ include ../../../../_includes/_util-fns
code-example(format="linenums").
<li *ng-for="#hero of heroes" (click)="onSelect(hero)">
<span class="badge">{{hero.id}}</span> {{hero.name}}</a>
<span class="badge">{{hero.id}}</span> {{hero.name}}
</li>
:markdown
Focus on the event binding
@@ -368,7 +368,7 @@ include ../../../../_includes/_util-fns
<li *ng-for="#hero of heroes"
[ng-class]="getSelectedClass(hero)"
(click)="onSelect(hero)">
<span class="badge">{{hero.id}}</span> {{hero.name}}</a>
<span class="badge">{{hero.id}}</span> {{hero.name}}
</li>
:markdown