I am using angular ui tab (angular-ui.github.io/bootstrap/) and I expected that with ng-repeat, I would be able to make it dynamic, meaning the user can add tabs. However, unexpectedly it duplicates the tabs.
Here is a demo: http://plnkr.co/edit/iHi1aOfbzsVd1vdX3Tg8?p=preview
The tabs work fine with this code:
<tabset vertical="true">
<tab heading="{{tab.name}}"><div ng-view></div></tab>
<tab heading="{{tab.name}}"><div ng-view></div></tab>
</tabset>
However, when I added ng-repeat="tab in tabs" to the tabset tag and tried to push new tabs into it later on, it failed and duplicated the entire set of tabs.