newavtar
newavtar

Reputation: 111

Add image in tab using Bootstrap directives for AngularJS

I have used bootstrap directive for angularjs for tab(http://angular-ui.github.io/bootstrap/), and i found that it only support specific parameters

https://github.com/angular-ui/bootstrap/tree/master/src/tabs/docs

i want to know is there any way to set image instead of heading for bootstrap angularjs directive ?

Upvotes: 0

Views: 1458

Answers (1)

Nikos Paraskevopoulos
Nikos Paraskevopoulos

Reputation: 40298

Check it out here:

<tabset>
    <tab>
        <tab-heading>
            <i class="glyphicon glyphicon-bell"></i> Alert!
        </tab-heading>
        Other tab content
    </tab>
</tabset>

Practically you can put any content inside the <tab-heading>.

Upvotes: 1

Related Questions