mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
setup view/edit site modals for vault
This commit is contained in:
16
src/popup/app/vault/vaultViewSiteController.js
Normal file
16
src/popup/app/vault/vaultViewSiteController.js
Normal file
@@ -0,0 +1,16 @@
|
||||
angular
|
||||
.module('bit.vault')
|
||||
|
||||
.controller('vaultViewSiteController', function ($scope, siteService, cryptoService) {
|
||||
$scope.site = {
|
||||
folderId: null
|
||||
};
|
||||
|
||||
$scope.editSite = function () {
|
||||
|
||||
};
|
||||
|
||||
$scope.close = function () {
|
||||
$scope.parentScope.closeViewSite();
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user