summaryrefslogtreecommitdiff
path: root/src/client/util.js
diff options
context:
space:
mode:
authorLV-426 <lv-426@taproot.org.il>2015-04-05 14:56:31 +0300
committerLV-426 <lv-426@taproot.org.il>2015-04-05 14:57:44 +0300
commita16dea8dd45f54240d44bdade242d278da5b7fa0 (patch)
treecec43eed7efa7d181214187ea8dd1e19017a3663 /src/client/util.js
parentd1202ab2958a8c06aac99a6c20656d2e054716f6 (diff)
misc
Diffstat (limited to 'src/client/util.js')
-rw-r--r--src/client/util.js4
1 files changed, 2 insertions, 2 deletions
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' };
}
}