Skip to content

Instantly share code, notes, and snippets.

@mrded
Created May 7, 2014 18:14
Show Gist options
  • Save mrded/0f26d6e1b050f23ca059 to your computer and use it in GitHub Desktop.
Save mrded/0f26d6e1b050f23ca059 to your computer and use it in GitHub Desktop.
AngularJS: First item as active class
<ul class="nav nav-tabs">
<li ng-repeat="team in teams" ng-class="{active: $index == 0}">
<a href="#" data-toggle="tab">{{team.name}}</a>
</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment