Lines 833-839
Link Here
|
833 |
<input type="hidden" name="op" value="cancel"> |
833 |
<input type="hidden" name="op" value="cancel"> |
834 |
<input type="hidden" name="recall_id" value="[% RECALL.recall_id | html %]"> |
834 |
<input type="hidden" name="recall_id" value="[% RECALL.recall_id | html %]"> |
835 |
<input type="hidden" name="biblionumber" value="[% RECALL.biblionumber | html %]"> |
835 |
<input type="hidden" name="biblionumber" value="[% RECALL.biblionumber | html %]"> |
836 |
<button type="submit" name="submit" class="btn btn-sm btn-danger" id="cancel_recall"><i class="icon-remove icon-white"></i> Cancel</button> |
836 |
<button type="submit" name="submit" class="btn btn-sm btn-danger cancel_recall"><i class="fa fa-remove" aria-hidden="true"></i> Cancel</button> |
837 |
</form> |
837 |
</form> |
838 |
[% END %] |
838 |
[% END %] |
839 |
</td> |
839 |
</td> |
Lines 1187-1193
Link Here
|
1187 |
}); |
1187 |
}); |
1188 |
} |
1188 |
} |
1189 |
|
1189 |
|
1190 |
$("#cancel_recall").click(function(e){ |
1190 |
$(".cancel_recall").click(function(e){ |
1191 |
return confirmDelete(_("Are you sure you want to remove this recall?")); |
1191 |
return confirmDelete(_("Are you sure you want to remove this recall?")); |
1192 |
}); |
1192 |
}); |
1193 |
|
1193 |
|