Remove unnecessary closing anchor tag.
This commit is contained in:
parent
c1b6e3e335
commit
7165886a87
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue