|
Lines 73-78
function update_category_code(category_code) {
Link Here
|
| 73 |
$(mytables).find("li").hide(); |
73 |
$(mytables).find("li").hide(); |
| 74 |
$(mytables).find(" li[data-category_code='"+category_code+"']").show(); |
74 |
$(mytables).find(" li[data-category_code='"+category_code+"']").show(); |
| 75 |
$(mytables).find(" li[data-category_code='']").show(); |
75 |
$(mytables).find(" li[data-category_code='']").show(); |
|
|
76 |
|
| 77 |
//Change password length hint |
| 78 |
var hint = $("#password").siblings(".hint").first(); |
| 79 |
var min_length = $('select'+category_selector+' option:selected').data('pwdLength'); |
| 80 |
var hint_string = MSG_PASSWORD_LENGTH.format(min_length); |
| 81 |
hint.html(hint_string); |
| 76 |
} |
82 |
} |
| 77 |
|
83 |
|
| 78 |
function select_user(borrowernumber, borrower, relationship) { |
84 |
function select_user(borrowernumber, borrower, relationship) { |
| 79 |
- |
|
|