You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need the ability to have different markup for some tabs on a page
by page basis. Injecting templates with the script tag on each page
is getting ugly.
This topic was recently brought up again in angular-ui#1611.
@sudhakar mentions a similar need for this in angular-ui#105.
_Usage_
```html
<tabset>
<tab ng-repeat="tab in tabs">
<tabset template-url="custom_tab_template">
<tab ng-repeat="innerTab in tab.tabs">
<span class="inner-tab-content">{{ innerTab.content }}</span>
</tab>
</tabset>
</tab>
</tabset>
```
0 commit comments