Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81bdc8c commit cfaa462Copy full SHA for cfaa462
aurelia-v1.1.2-non-keyed/src/app.html
@@ -30,11 +30,13 @@ <h1>Aurelia v1.1.2</h1>
30
<table class="table table-hover table-striped test-data">
31
<tbody>
32
<tr repeat.for="item of store.data" class-name.bind="item.id === store.selected ? 'danger' : ''">
33
- <td class="col-md-1">${item.id}</td>
+ <td class="col-md-1">${item.id & oneTime}</td>
34
<td class="col-md-4">
35
<a click.delegate="select(item)">${item.label}</a>
36
</td>
37
- <td class="col-md-1"><a click.delegate="remove(item)"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></a></td>
+ <td class="col-md-1"><a click.delegate="remove(item)">
38
+ <span class="glyphicon glyphicon-remove" aria-hidden="true"></span></a>
39
+ </td>
40
<td class="col-md-6"></td>
41
</tr>
42
</tbody>
0 commit comments