|
Lines 139-145
Link Here
|
| 139 |
var list_id = $("#add_to_patron_list_id_select").val(); |
139 |
var list_id = $("#add_to_patron_list_id_select").val(); |
| 140 |
$('#pat_lists_panel').text(_("Loading...")); |
140 |
$('#pat_lists_panel').text(_("Loading...")); |
| 141 |
$("body").css("cursor", "progress"); |
141 |
$("body").css("cursor", "progress"); |
| 142 |
$('#pat_lists_panel').load(`/cgi-bin/koha/patron_lists/patron-lists-tab.pl?borrowernumber=${patron_id}&patron_list_id=${list_id}&patrons_to_add=${cardnumber}, function() { |
142 |
$('#pat_lists_panel').load(`/cgi-bin/koha/patron_lists/patron-lists-tab.pl?borrowernumber=${patron_id}&patron_list_id=${list_id}&patrons_to_add=${cardnumber}`, function() { |
| 143 |
$("body").css("cursor", "default"); |
143 |
$("body").css("cursor", "default"); |
| 144 |
}); |
144 |
}); |
| 145 |
|
145 |
|
| 146 |
- |
|
|