1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-20 07:40:57 +02:00
bitwarden-browser/src/popup/app/vault/vaultController.js

35 lines
948 B
JavaScript
Raw Normal View History

angular
.module('bit.vault')
2016-09-03 22:48:39 +02:00
.controller('vaultController', function ($scope, $ionicModal) {
$ionicModal.fromTemplateUrl('app/vault/views/vaultAddSite.html', {
scope: $scope,
animation: 'slide-in-up'
}).then(function (modal) {
$scope.addSiteModal = modal;
});
2016-09-03 22:48:39 +02:00
$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
});
});