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:
authorFelix Nüsse <Felix.nuesse@t-online.de>2018-10-28 14:09:37 +0300
committerfnuesse <felix.nuesse@t-online.de>2018-11-21 19:34:16 +0300
commit80f1928a9406c78c084b04b14da6338950501061 (patch)
tree198caa4b7738e86cf135107b6489ea1e4a5bdabd /js/app
parentc5910cf535e2655888456e6f05497ecdccbeb991 (diff)
removed console-output
Signed-off-by: Felix Nüsse <Felix.nuesse@t-online.de>
Diffstat (limited to 'js/app')
-rw-r--r--js/app/controllers/credential.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/js/app/controllers/credential.js b/js/app/controllers/credential.js
index 4ab3fd04..1116adb8 100644
--- a/js/app/controllers/credential.js
+++ b/js/app/controllers/credential.js
@@ -375,7 +375,6 @@
//watch for special tags
$scope.$on('filterSpecial', function(event, args) {
- console.log("strength: "+args);
switch (args) {
case "strength_good": $scope.filterStrength(3,1000); break;
case "strength_medium": $scope.filterStrength(2,3); break;
@@ -410,7 +409,6 @@
$scope.filterExpired = function(){
var initialCredentials=$scope.active_vault.credentials;
var now = Date.now();
- console.log(now);
var postFiltered=[];
for (var i = 0; i < initialCredentials.length; i++) {