|
Lines 1919-1925
Link Here
|
| 1919 |
e.preventDefault(); |
1919 |
e.preventDefault(); |
| 1920 |
if($('.holds_table .select_hold:checked').length) { |
1920 |
if($('.holds_table .select_hold:checked').length) { |
| 1921 |
cancel_link = $(this); |
1921 |
cancel_link = $(this); |
| 1922 |
$("#cancel_modal_form #inputs").empty; |
1922 |
$("#cancel_modal_form #inputs").empty(); |
| 1923 |
biblionumbers.forEach( function(biblionumber){ |
1923 |
biblionumbers.forEach( function(biblionumber){ |
| 1924 |
$("#cancel_modal_form #inputs").append('<input type="hidden" name="biblionumber" value="'+biblionumber+'">'); |
1924 |
$("#cancel_modal_form #inputs").append('<input type="hidden" name="biblionumber" value="'+biblionumber+'">'); |
| 1925 |
}); |
1925 |
}); |
| 1926 |
- |
|
|