mirror of
https://github.com/bitwarden/browser
synced 2025-12-28 06:03:40 +00:00
21 lines
633 B
JavaScript
21 lines
633 B
JavaScript
angular
|
|
.module('bit.tools')
|
|
|
|
.controller('toolsController', function ($scope, $uibModal, apiService, toastr, authService) {
|
|
$scope.import = function () {
|
|
$uibModal.open({
|
|
animation: true,
|
|
templateUrl: 'app/tools/views/toolsImport.html',
|
|
controller: 'toolsImportController'
|
|
});
|
|
};
|
|
|
|
$scope.export = function () {
|
|
$uibModal.open({
|
|
animation: true,
|
|
templateUrl: 'app/tools/views/toolsExport.html',
|
|
controller: 'toolsExportController'
|
|
});
|
|
};
|
|
});
|