SignUp: password strength meter updated, Fixes #1892

This commit is contained in:
Torkel Ödegaard
2015-05-01 11:22:21 +02:00
parent e771d8e944
commit e7ac367392
+1 -1
View File
@@ -67,7 +67,7 @@ function (angular, config) {
$scope.strengthClass = "password-strength-bad";
return;
}
if (newValue.length <= 6) {
if (newValue.length <= 8) {
$scope.strengthText = "strength: you can do better.";
$scope.strengthClass = "password-strength-ok";
return;