mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
15 lines
443 B
JavaScript
15 lines
443 B
JavaScript
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');
|
|
};
|
|
});
|