Greetings! I would like to express my gratitude for this wonderful library!
However, I am encountering an unusual issue when trying to wrap a tabset with tabs that are included separately. This can be done either by adding individual tab elements manually in the DOM, or by using group of tabs added through ng-repeat:
Take a look at this example:
<scrollable-tabset show-tooltips="false">
<tabset>
<!-- 1st Block of tabs-->
<tab>
<tab-heading>Tab 0</tab-heading>
Tab 0 content
</tab>
<!-- 2nd Block of tabs-->
<tab ng-repeat="tab in tabs1" active="tab.active" disabled="tab.disabled">
<tab-heading>{{tab.heading}}</tab-heading>
{{tab.content}}
</tab>
<!-- 3rd Block of tabs-->
<tab ng-repeat="tab in tabs2" active="tab.active" disabled="tab.disabled">
<tab-heading>{{tab.heading}}</tab-heading>
{{tab.content}}
</tab>
<!-- 4th Block of tabs-->
<tab>
<tab-heading>Tab 6</tab-heading>
Tab 0 content
</tab>
</tabset>
</scrollable-tabset>
I have thoroughly examined and compared the CSS of each block, but couldn't find any discrepancies...
Any thoughts on this matter?
Thank you.