1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 10:13:31 +00:00

change plan modal and adjust seat callouts

This commit is contained in:
Kyle Spearrin
2017-04-11 14:26:17 -04:00
parent 02076fadf4
commit 8984ec3127
5 changed files with 59 additions and 0 deletions

View File

@@ -29,6 +29,23 @@
});
};
$scope.changePlan = function () {
var modal = $uibModal.open({
animation: true,
templateUrl: 'app/organization/views/organizationBillingChangePlan.html',
controller: 'organizationBillingChangePlanController',
resolve: {
plan: function () {
return $scope.plan;
}
}
});
modal.result.then(function () {
load();
});
};
$scope.adjustSeats = function (add) {
var modal = $uibModal.open({
animation: true,