mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-10 21:03:56 +08: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');
|
|
};
|
|
});
|