Skip to content

Instantly share code, notes, and snippets.

@kiub
Created May 29, 2015 15:41
Show Gist options
  • Save kiub/f7240b8b813ca1f8eeb4 to your computer and use it in GitHub Desktop.
Save kiub/f7240b8b813ca1f8eeb4 to your computer and use it in GitHub Desktop.
<!-- example 1 -->
<li ng-class="$first ? 'firstRow' : 'nonFirstRow'">...</li>
<!-- example 2 -->
<li ng-class="{myClass: $first, anotherClass: $index == 2}">...</li>
<!-- example 3 -->
<li ng-style="{true: {color: 'red'}, false: {}}[$first]">...</li>
<!-- from: http://stackoverflow.com/questions/12008580/a-ternary-in-templates -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment