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

View File

@ -131,7 +131,7 @@ include ../../../../_includes/_util-fns
code-example(format="linenums" language="html"). code-example(format="linenums" language="html").
<li *ng-for="#hero of heroes"> <li *ng-for="#hero of heroes">
<span class="badge">{{hero.id}}</span> {{hero.name}}</a> <span class="badge">{{hero.id}}</span> {{hero.name}}
</li> </li>
:markdown :markdown
@ -222,7 +222,7 @@ include ../../../../_includes/_util-fns
code-example(format="linenums"). code-example(format="linenums").
<li *ng-for="#hero of heroes" (click)="onSelect(hero)"> <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> </li>
:markdown :markdown
Focus on the event binding Focus on the event binding
@ -368,7 +368,7 @@ include ../../../../_includes/_util-fns
<li *ng-for="#hero of heroes" <li *ng-for="#hero of heroes"
[ng-class]="getSelectedClass(hero)" [ng-class]="getSelectedClass(hero)"
(click)="onSelect(hero)"> (click)="onSelect(hero)">
<span class="badge">{{hero.id}}</span> {{hero.name}}</a> <span class="badge">{{hero.id}}</span> {{hero.name}}
</li> </li>
:markdown :markdown