1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

Add site modal stubbed out

This commit is contained in:
Kyle Spearrin
2016-09-03 16:48:39 -04:00
parent 984c61e10f
commit 2871e04cc7
6 changed files with 49 additions and 2 deletions

View File

@@ -1,6 +1,34 @@
angular
.module('bit.vault')
.controller('vaultController', function ($scope) {
.controller('vaultController', function ($scope, $ionicModal) {
$ionicModal.fromTemplateUrl('app/vault/views/vaultAddSite.html', {
scope: $scope,
animation: 'slide-in-up'
}).then(function (modal) {
$scope.addSiteModal = modal;
});
$scope.addSite = function () {
$scope.addSiteModal.show();
};
$scope.closeAddSite = function () {
$scope.addSiteModal.hide();
};
// Cleanup the modal when we're done with it!
$scope.$on('$destroy', function () {
$scope.addSiteModal.remove();
});
// Execute action on hide modal
$scope.$on('modal.hidden', function () {
// Execute action
});
// Execute action on remove modal
$scope.$on('modal.removed', function () {
// Execute action
});
});