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

(-)a/koha-tmpl/intranet-tmpl/prog/js/members-patron-selections.js (-3 / +2 lines)
Lines 16-24 function persistPatronSelections(form) { Link Here
16
16
17
function showPatronSelections(number) {
17
function showPatronSelections(number) {
18
    if (number === 0) {
18
    if (number === 0) {
19
        $("#table_search_selections").hide()
19
        $("#patron_search_selected").hide()
20
    } else {
20
    } else {
21
        $("#table_search_selections").show().find("span").text(__("Patrons selected: %s").format(number));
21
        $("#patron_search_selected").show().find("span").text(__("Patrons selected: %s").format(number));
22
    }
22
    }
23
}
23
}
24
24
25
- 

Return to bug 34479