1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 02:03:39 +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('vaultEditSiteController', function ($scope, siteService, cryptoService) {
$scope.site = {
folderId: null
};
$scope.editSite = function (model) {
};
$scope.close = function () {
$scope.parentScope.closeEditSite();
};
});