Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(carousel): correct glyphicon
Fixes #2006
Closes #2014
  • Loading branch information
tomchentw authored and chrisirhc committed Apr 2, 2014
1 parent 4b811b7 commit 3b6ab25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions template/carousel/carousel.html
Expand Up @@ -3,6 +3,6 @@
<li ng-repeat="slide in slides track by $index" ng-class="{active: isActive(slide)}" ng-click="select(slide)"></li>
</ol>
<div class="carousel-inner" ng-transclude></div>
<a class="left carousel-control" ng-click="prev()" ng-show="slides.length > 1"><span class="icon-prev"></span></a>
<a class="right carousel-control" ng-click="next()" ng-show="slides.length > 1"><span class="icon-next"></span></a>
<a class="left carousel-control" ng-click="prev()" ng-show="slides.length > 1"><span class="glyphicon glyphicon-chevron-left"></span></a>
<a class="right carousel-control" ng-click="next()" ng-show="slides.length > 1"><span class="glyphicon glyphicon-chevron-right"></span></a>
</div>

0 comments on commit 3b6ab25

Please sign in to comment.