Skip to content

Instantly share code, notes, and snippets.

@cacciatc
Last active December 15, 2015 03:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cacciatc/5193522 to your computer and use it in GitHub Desktop.
Save cacciatc/5193522 to your computer and use it in GitHub Desktop.
ngRepeat Example
<tr ng-repeat="player in players">
<td>
{{player.score | number:2}}
</td>
<td>
{{player.name}}
</td>
<td>
{{player.pos}}
</td>
<td>
{{player.slg | number:3}}
</td>
<td>
{{player.obp | number:3}}
</td>
<td>
<img ng-src="{{'img/'+player.team+'.gif'}}" width="21px"/>
{{player.team}}
</td>
</tr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment