Skip to content

Instantly share code, notes, and snippets.

@strukturedkaos
Last active August 29, 2015 14:02
Show Gist options
  • Save strukturedkaos/804ba98d574eeb31f422 to your computer and use it in GitHub Desktop.
Save strukturedkaos/804ba98d574eeb31f422 to your computer and use it in GitHub Desktop.
Example of single task list item in Angular task list
<li ng-class="{active: currentList.title == list.title}" ng-repeat="list in lists track by $index">
<a data-toggle="tab" href="#{{list.listId}}">
<span class="badge pull-right">{{list.remainingCount}}</span>
<div class="destroy pull-right glyphicon glyphicon-trash" ng-click="removeList(list)"></div>
<strong>{{list.title}}</strong>
</a>
</li>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment