View | Details | Raw Unified | Return to bug 9679
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/ccsr/en/js/basket.js (-1 / +10 lines)
Lines 397-402 function showLess() { Link Here
397
    document.location = loc;
397
    document.location = loc;
398
}
398
}
399
399
400
function holdSel() {
401
    var items = document.getElementById('records').value;
402
    if (items) {
403
        parent.opener.document.location = "/cgi-bin/koha/opac-reserve.pl?biblionumbers=" + items;
404
        window.close();
405
    } else {
406
        alert(MSG_NO_RECORD_SELECTED);
407
    }
408
}
409
400
function updateBasket(updated_value,target) {
410
function updateBasket(updated_value,target) {
401
    if(target){
411
    if(target){
402
    target.$('#basketcount').html("<span>"+updated_value+"</span>");
412
    target.$('#basketcount').html("<span>"+updated_value+"</span>");
403
- 

Return to bug 9679