valor-software/ng2-bootstrap

View on GitHub
demo/src/app/components/+tabs/demos/custom-template/custom-template.html

Summary

Maintainability
Test Coverage
<div>
  <tabset>
    <tab heading="Static">
      Tab 1
    </tab>
    <tab>
      <ng-template tabHeading>
        <span class="badge badge-secondary">Heading</span>
      </ng-template>
      I've got an HTML heading. Pretty cool!
    </tab>
    <tab>
      <ng-template tabHeading>
        <i><b>Tab 3</b></i>
      </ng-template>
      Tab with html tags in heading
    </tab>
  </tabset>
</div>