diff options
author | Git <git@what.cd> | 2013-06-27 08:01:06 +0000 |
---|---|---|
committer | Git <git@what.cd> | 2013-06-27 08:01:06 +0000 |
commit | defe05e12ab6116072f7502587380aba8b9fcda2 (patch) | |
tree | 31893bea7a7c5b20f5c85eb5bbc77cd9c6766e04 /static/functions/password_validate.js | |
parent | f8540013d623507d45cd82cdd4e718352f599490 (diff) | |
download | Gazelle-defe05e12ab6116072f7502587380aba8b9fcda2.zip Gazelle-defe05e12ab6116072f7502587380aba8b9fcda2.tar.gz Gazelle-defe05e12ab6116072f7502587380aba8b9fcda2.tar.bz2 |
Empty commit
Diffstat (limited to 'static/functions/password_validate.js')
-rw-r--r-- | static/functions/password_validate.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static/functions/password_validate.js b/static/functions/password_validate.js index 0a6ccdb..e6cb4f8 100644 --- a/static/functions/password_validate.js +++ b/static/functions/password_validate.js @@ -3,7 +3,7 @@ * Validates passwords to make sure they are powerful **/ -(function($) { +(function() { var CLEAR = 0; var WEAK = 1; var STRONG = 3; @@ -192,5 +192,5 @@ function isUserPage() { return window.location.pathname.indexOf(USER_PATH) != -1; } -} ) ( jQuery ); +})(); |