mirror of
https://github.com/bitwarden/web
synced 2025-12-23 19:53:16 +00:00
share login modal
This commit is contained in:
@@ -1,21 +0,0 @@
|
||||
angular
|
||||
.module('bit.vault')
|
||||
|
||||
.controller('vaultShareController', function ($scope, apiService, $uibModalInstance, cryptoService, cipherService,
|
||||
id, name, isFolder, $analytics) {
|
||||
$analytics.eventTrack('vaultShareController', { category: 'Modal' });
|
||||
$scope.cipher = {
|
||||
id: id,
|
||||
name: name,
|
||||
isFolder: isFolder
|
||||
};
|
||||
|
||||
$scope.sharePromise = null;
|
||||
$scope.share = function () {
|
||||
$uibModalInstance.close({});
|
||||
};
|
||||
|
||||
$scope.close = function () {
|
||||
$uibModalInstance.dismiss('cancel');
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user