From 96bcd6d646b71cca46203b7189eb08406f2dcdb1 Mon Sep 17 00:00:00 2001 From: jloveland Date: Sun, 27 Sep 2015 12:58:06 -0400 Subject: [PATCH] fixing spacing --- .../directives/password-validator.client.directive.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/users/client/directives/password-validator.client.directive.js b/modules/users/client/directives/password-validator.client.directive.js index 9530fcd573..a0ef1eaa95 100644 --- a/modules/users/client/directives/password-validator.client.directive.js +++ b/modules/users/client/directives/password-validator.client.directive.js @@ -12,10 +12,10 @@ angular.module('users') // Strength Meter - visual indicator for users var strengthMeter = [ { color: 'danger', progress: '20' }, - { color: 'warning', progress: '40'}, - { color: 'info', progress: '60'}, - { color: 'primary', progress: '80'}, - { color: 'success', progress: '100'} + { color: 'warning', progress: '40' }, + { color: 'info', progress: '60' }, + { color: 'primary', progress: '80' }, + { color: 'success', progress: '100' } ]; var strengthMax = strengthMeter.length;