Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js/app
diff options
context:
space:
mode:
authornewhinton <felix.nuesse@t-online.de>2019-05-19 18:20:40 +0300
committerGitHub <noreply@github.com>2019-05-19 18:20:40 +0300
commit683b06ae1e436e34a495ec3384ef918d6e820b6f (patch)
tree9140bb2ae401f1ce0661247e8652cc63bc1f84a3 /js/app
parent8f38367547c7276e602b7815bd1dba780a051cf8 (diff)
parentbeb9bb1a60771ee314381757a84855d388412c9a (diff)
Merge branch 'master' into fix/550/logout_does_not_clear_vaultfix/550/logout_does_not_clear_vault
Diffstat (limited to 'js/app')
-rw-r--r--js/app/controllers/credential.js15
1 files changed, 7 insertions, 8 deletions
diff --git a/js/app/controllers/credential.js b/js/app/controllers/credential.js
index b5ca9302..1f7cd27f 100644
--- a/js/app/controllers/credential.js
+++ b/js/app/controllers/credential.js
@@ -540,13 +540,12 @@
}
$scope.active_vault = null;
$scope.credentials = [];
- VaultService.clearVaultService();
-
- });
+ VaultService.clearVaultService();
+ });
- $scope.clearState = function () {
- $scope.delete_time = 0;
- };
+ $scope.clearState = function () {
+ $scope.delete_time = 0;
+ };
- }]);
-}()); \ No newline at end of file
+ }]);
+}());