1
0
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:
Kyle Spearrin
2016-09-05 23:43:56 -04:00
parent aa6fcacd70
commit e83d09ff6d
7 changed files with 142 additions and 5 deletions

View 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();
};
});