Refers to the Angular UI Bootstrap tabs directive, which is an Angular implementation of Bootstrap tabs.
angular-ui-bootstrap-tab refers to the Angular UI Bootstrap tabs directive, which is an Angular implementation of Bootstrap Tabs.
Example of usage (0.14.3) :
<uib-tabset>
   <uib-tab heading="Static title">Static content</uib-tab>
   <uib-tab ng-repeat="tab in tabs" heading="{{tab.title}}" active="tab.active" disable="tab.disabled">
      {{tab.content}}
   </uib-tab>
   <uib-tab select="alertMe()">
      <uib-tab-heading>
        <i class="glyphicon glyphicon-bell"></i> Alert!
      </uib-tab-heading>
      I've got an HTML heading, and a select callback. Pretty cool!
   </uib-tab>
</uib-tabset>
Documentation :
Angular UI Bootstrap -> https://angular-ui.github.io/bootstrap/#/tabs
Bootstrap Tabs -> http://getbootstrap.com/javascript/#tabs
 
     
     
     
     
     
     
     
     
     
     
     
     
    