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

(-)a/koha-tmpl/opac-tmpl/bootstrap/js/results-list.js (-3 / +2 lines)
Lines 34-44 function enableCheckboxActions() { Link Here
34
    if ($(checkedBoxes).size()) {
34
    if ($(checkedBoxes).size()) {
35
        $(".selections").html(__("With selected titles: "));
35
        $(".selections").html(__("With selected titles: "));
36
        $(controls).removeClass("disabled");
36
        $(controls).removeClass("disabled");
37
        $(controls).removeAttr('tabindex');
37
        $(controls).removeAttr("tabindex");
38
    } else {
38
    } else {
39
        $(".selections").html(__("Select titles to: "));
39
        $(".selections").html(__("Select titles to: "));
40
        $(controls).addClass("disabled");
40
        $(controls).addClass("disabled");
41
        $(controls).attr('tabindex', '-1');
41
        $(controls).attr("tabindex", "-1");
42
    }
42
    }
43
}
43
}
44
44
45
- 

Return to bug 40782