1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

int events again each time page changes

This commit is contained in:
Kyle Spearrin
2017-11-15 14:26:01 -05:00
parent 2f7b6790db
commit 3b6e9d7b0b
3 changed files with 28 additions and 3 deletions

View File

@@ -47,6 +47,10 @@ angular
$scope.typeChanged = function () {
$scope.cipher.type = parseInt($scope.selectedType);
$timeout(function () {
utilsService.initListSectionItemListeners(document, angular);
}, 500);
};
$scope.savePromise = null;
@@ -95,6 +99,10 @@ angular
name: null,
value: null
});
$timeout(function () {
utilsService.initListSectionItemListeners(document, angular);
}, 500);
};
$scope.removeField = function (field) {

View File

@@ -38,6 +38,10 @@ angular
$scope.typeChanged = function () {
$scope.cipher.type = parseInt($scope.selectedType);
$timeout(function () {
utilsService.initListSectionItemListeners(document, angular);
}, 500);
};
$scope.savePromise = null;
@@ -111,6 +115,10 @@ angular
name: null,
value: null
});
$timeout(function () {
utilsService.initListSectionItemListeners(document, angular);
}, 500);
};
$scope.removeField = function (field) {