mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
10 lines
333 B
JavaScript
10 lines
333 B
JavaScript
angular
|
|
.module('bit.tools')
|
|
|
|
.controller('toolsAuditsController', function ($scope, apiService, $uibModalInstance, toastr, $analytics) {
|
|
$analytics.eventTrack('toolsAuditsController', { category: 'Modal' });
|
|
$scope.close = function () {
|
|
$uibModalInstance.dismiss('cancel');
|
|
};
|
|
});
|