From 4384958bf2671fab1baad74e13a24cc99fb6a581 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Tue, 26 Aug 2014 15:05:42 -0400 Subject: [PATCH] passwords can now contain spaces --- public/src/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/utils.js b/public/src/utils.js index 84f9567927..28973b9c8d 100644 --- a/public/src/utils.js +++ b/public/src/utils.js @@ -139,7 +139,7 @@ }, isPasswordValid: function(password) { - return typeof password === 'string' && password.length && password.indexOf(' ') === -1; + return typeof password === 'string' && password.length; }, isNumber: function(n) {