From a16dea8dd45f54240d44bdade242d278da5b7fa0 Mon Sep 17 00:00:00 2001 From: LV-426 Date: Sun, 5 Apr 2015 14:56:31 +0300 Subject: misc --- src/client/util.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client/util.js') diff --git a/src/client/util.js b/src/client/util.js index 20dff15a..763623af 100644 --- a/src/client/util.js +++ b/src/client/util.js @@ -76,10 +76,10 @@ define(['jquery'], function($) { function input_validation__password(password_first, password_second) { if (password_first != password_second) { - throw { message: 'passwords do not match' } + throw { message: 'Passwords do not match' }; } if (password_first.length < 8) { - throw { message: 'password too short - must be at least 8 charachters long' } + throw { message: 'Password too short - must be at least 8 charachters long' }; } } -- cgit v1.3.1