@@ -, +, @@ - Enable the CCSR theme and put items into the OPAC cart. - Open the cart, select one or more items, and click "place hold." --- koha-tmpl/opac-tmpl/ccsr/en/js/basket.js | 10 ++++++++++ 1 file changed, 10 insertions(+) --- a/koha-tmpl/opac-tmpl/ccsr/en/js/basket.js +++ a/koha-tmpl/opac-tmpl/ccsr/en/js/basket.js @@ -397,6 +397,16 @@ function showLess() { document.location = loc; } +function holdSel() { + var items = document.getElementById('records').value; + if (items) { + parent.opener.document.location = "/cgi-bin/koha/opac-reserve.pl?biblionumbers=" + items; + window.close(); + } else { + alert(MSG_NO_RECORD_SELECTED); + } +} + function updateBasket(updated_value,target) { if(target){ target.$('#basketcount').html(""+updated_value+""); --