Created
February 17, 2016 13:53
-
-
Save hendrikras/b8130a18d7f0bd3c6fef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table> | |
<th>Name</th> | |
<th>Sirname</th> | |
<th>Birthdate</th> | |
<th>Age</th> | |
<tr ng-repeat="contestant in vm.contestants | filter: vm.isBiggerThenMinimum"> | |
<td>{{contestant.Name}}</td> | |
<td>{{contestant.Sirname}}</td> | |
<td>{{contestant.Occupation}}</td> | |
<td>{{contestant.Age}}</td> | |
</tr> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment