remove restriction on resetting pw to random number when Use Phone Password setting...
authorJason Etheridge <jason@esilibrary.com>
Tue, 24 May 2011 18:55:57 +0000 (14:55 -0400)
committerJason Etheridge <jason@esilibrary.com>
Tue, 24 May 2011 18:55:57 +0000 (14:55 -0400)
Signed-off-by: Jason Etheridge <jason@esilibrary.com>
Open-ILS/web/js/ui/default/actor/user/register.js

index e4dc715..6915f53 100644 (file)
@@ -233,9 +233,6 @@ function load() {
     }
 
        dojo.connect(generatePassword, 'onClick', generatePasswordHandler);
-       if (uEditUsePhonePw) {
-               generatePassword.attr('disabled', true);
-       }
 
     if(!patron.isnew() && !checkGrpAppPerm(patron.profile()) && patron.id() != openils.User.user.id()) {
         // we are not allowed to edit this user, so disable the save option
@@ -1262,7 +1259,6 @@ function uEditNewPatron() {
 }
 
 function uEditMakeRandomPw(patron) {
-    if(uEditUsePhonePw) return;
     var rand  = Math.random();
     rand = parseInt(rand * 10000) + '';
     while(rand.length < 4) rand += '0';