I have a special requirement for my project where I use Angular-UI-Bootstrap to create a tabbed view.
<uib-tab data-ng-repeat="pageTitle in form.pagetitles" heading="{{pageTitle}}">
// tab content and so on...
</uib-tab>
I want to have a Button next to the Tab-Heading with a linked ng-click function. In this function I want to remove the page (still implemented, no help needed here).
<button data-ng-click='removePage(pageTitle)' class='btn btn-default'><span class='glyphicon glyphicon-wrench'></span></button>
My Problem: I do not have an idea how to get the button next to the heading. Can anyone help me?