Hello, I am a beginner in angular js.
Can someone please guide me on how to include an icon in a tab using angular js? Here is my current code:
<tabset panel-tabs="true" panel-class="{{demoTabbedPanelClass}}" heading="{{demoTabbedPanelHeading}}">
<tab heading="Tab 1 some text">sapiente doloribus deserunt et nam obcaecati recusandae possimus aperiam similique.</p>
</tab>
<tab heading="Tab 2 ded">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur ipsam consectetur sint. Nobis facere illo iste quaerat sapiente doloribus deserunt et nam obcaecati recusandae possimus aperiam similique.</p>
</tab>
</tabset>
I'm trying to add an icon by using:
<tab heading="Tab 2 ded <span class="icon-print">print</span>">
However, it's displaying everything inside the heading tag without rendering the span as expected.
Your assistance is greatly appreciated.