Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
<uib-tabset active="active_tab">
<!-- note that non-numeric index values must be enclosed in single-quotes,
otherwise selecting the active table won't work cleanly -->
- <uib-tab index="'create-subscription'" heading="[% l('Create Subscription') %]">
+ <uib-tab index="'manage-subscriptions'" heading="[% l('Manage Subscriptions') %]">
<eg-subscription-manager bib-id="bib_id"></eg-subscription-manager>
</uib-tab>
<uib-tab index="'prediction'" heading="[% l('Manage Predictions') %]">
['$scope','$routeParams','$location',
function($scope , $routeParams , $location) {
$scope.bib_id = $routeParams.bib_id;
- $scope.active_tab = $routeParams.active_tab ? $routeParams.active_tab : 'create-subscription';
+ $scope.active_tab = $routeParams.active_tab ? $routeParams.active_tab : 'manage-subscriptions';
}])