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

Commit

Permalink
fix(Accordion): Made accordion heading tab-able for IE9-10
Browse files Browse the repository at this point in the history
- Add tabindex to anchor tag
  • Loading branch information
Henri Hietala authored and wesleycho committed Mar 15, 2015
1 parent db570e3 commit 6abad50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template/accordion/accordion-group.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a href class="accordion-toggle" ng-click="toggleOpen()" accordion-transclude="heading"><span ng-class="{'text-muted': isDisabled}">{{heading}}</span></a>
<a href tabindex="0" class="accordion-toggle" ng-click="toggleOpen()" accordion-transclude="heading"><span ng-class="{'text-muted': isDisabled}">{{heading}}</span></a>
</h4>
</div>
<div class="panel-collapse" collapse="!isOpen">
Expand Down

0 comments on commit 6abad50

Please sign in to comment.