bansho/app/components/custom_directive/tab_panel/tab_panel.html
Vincent Fournier 5d87fdaacd Improve code naming
Change-Id: If4837f71caca6d594e141fff830c7c2c08376e03
2015-08-24 20:33:27 -04:00

18 lines
593 B
HTML

<section class="main__content tabpanel">
<nav>
<ul class="tablist clearfix">
<li role="presentation" class="tablist__item" data-ng-repeat="(key, panel) in options.attributes.navigation"
ng-class="{active: currentPanel === key}">
<a ng-click="setIsShown(key)"
class="tabpanel__tab"
aria-expanded="true"
role="tab"
data-toggle="tab"
data-problems="{{panel.right}}">{{panel.title}}
</a>
</li>
</ul>
</nav>
<bansho-components components="options.components"></bansho-components>
</section>