I am trying to use the uib-tabset in my project for the tabs. Everything is working good but I am trying to figure out how to set the active status of a tab via a method in my angularJS coding.
<uib-tabset active="active">
<uib-tab index="0">
<div>Some Con</div>
</uib-tab>
<uib-tab index="2">
<div>Some Con</div>
</uib-tab>
<uib-tab index="3">
<div>Some Con</div>
</uib-tab>
Is there some way to access the active attribute? I know I'm forgetting something but just cannot think of it at this moment. Any help is appreciated.