From 885829c2e454d02e3acf60000712eaf621643d84 Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Mon, 12 Dec 2011 17:22:29 -0500 Subject: [PATCH] Add more rules for passwords. --- js/rules.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/js/rules.js b/js/rules.js index c5a28bb..6f50749 100755 --- a/js/rules.js +++ b/js/rules.js @@ -3,4 +3,14 @@ var special = new Array(); special['53.com'] = (function(password) { // 6-12 characters return password.substr(0,12); +}); + +special['paypal.com'] = (function(password) { + // 8-20 characters + return password.substr(0,20); +}); + +special['ebay.com'] = (function(password) { + // 8-20 characters + return password.substr(0,20); }); \ No newline at end of file