mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
Moving away from ionic to pure angular for popup. Setup gulpfile and some tasks
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
angular
|
||||
.module('bit.vault')
|
||||
|
||||
.controller('vaultController', function ($scope, $ionicModal, siteService, folderService, $q, cipherService) {
|
||||
.controller('vaultController', function ($scope, siteService, folderService, $q, cipherService) {
|
||||
$scope.parentScope = $scope;
|
||||
$scope.sites = [];
|
||||
$scope.folders = [];
|
||||
@@ -70,6 +70,7 @@
|
||||
return item.name.toLowerCase();
|
||||
};
|
||||
|
||||
/*
|
||||
$scope.viewSite = function (site) {
|
||||
$scope.focusedSiteId = site.id;
|
||||
$ionicModal.fromTemplateUrl('app/vault/views/vaultViewSite.html', {
|
||||
@@ -101,6 +102,7 @@
|
||||
modal.show();
|
||||
});
|
||||
};
|
||||
*/
|
||||
|
||||
$scope.closeAddSite = function () {
|
||||
$scope.addSiteModal.hide();
|
||||
|
||||
Reference in New Issue
Block a user