1
0
mirror of https://github.com/bitwarden/web synced 2026-01-07 19:13:21 +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

@@ -0,0 +1,14 @@
angular
.module('bit.organization')
.controller('organizationBillingChangePlanController', function ($scope, $state, apiService, $uibModalInstance,
toastr, $analytics) {
$analytics.eventTrack('organizationBillingChangePlanController', { category: 'Modal' });
$scope.submit = function () {
};
$scope.close = function () {
$uibModalInstance.dismiss('cancel');
};
});