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