Bug 23623: (follow-up) Add missing comma in ajax call definition
Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
ab4fa77eb0
commit
92af7a31a3
1 changed files with 1 additions and 1 deletions
|
@ -1053,7 +1053,7 @@
|
|||
$('#update_privacy_guarantor_checkouts').click( function() {
|
||||
var can_see_checkouts = $('#privacy_guarantor_checkouts').val() == 1;
|
||||
$.ajax({
|
||||
url: "/api/v1/public/patrons/[% logged_in_user.borrowernumber %]/guarantors/can_see_checkouts"
|
||||
url: "/api/v1/public/patrons/[% logged_in_user.borrowernumber %]/guarantors/can_see_checkouts",
|
||||
type: "PUT",
|
||||
data: JSON.stringify({ allowed: can_see_checkouts }),
|
||||
contentType: "application/json",
|
||||
|
|
Loading…
Reference in a new issue