Created
May 7, 2014 18:14
-
-
Save mrded/0f26d6e1b050f23ca059 to your computer and use it in GitHub Desktop.
AngularJS: First item as active class
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
<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