Is there a way to tell which tab that has been selected when using the Bootstrap tabs in Angular UI?
I tried watching the panes array but it deosn\'t seem to be upda
if you don't have a repeater, bind tabs (or spans) activity to an Array
... ...
and in your controller
$scope.tabActivity=[false,false];
then you can get active tab with
$scope.tabActivity.indexOf(true)