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

(-)a/koha-tmpl/intranet-tmpl/prog/en/js/pages/circulation.js (-4 / +5 lines)
Lines 133-139 function validate1(date) { Link Here
133
133
134
// prevent adjacent checkboxes from being checked simultaneously
134
// prevent adjacent checkboxes from being checked simultaneously
135
function radioCheckBox(box){
135
function radioCheckBox(box){
136
    if($(this).attr("checked")){
136
    box.parents("td").siblings().find("input:checkbox:visible").each(function(){
137
        $(this).removeAttr("checked");
137
        if($(this).attr("checked")){
138
    }
138
            $(this).removeAttr("checked");
139
        }
140
    });
139
 }
141
 }
140
- 

Return to bug 9294