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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt (-2 / +1 lines)
Lines 383-389 Link Here
383
        function showItemSelections( number ){
383
        function showItemSelections( number ){
384
            let caret = ' <span class="caret">';
384
            let caret = ' <span class="caret">';
385
            if( number > 0 ){
385
            if( number > 0 ){
386
                $("#table_search_selections").show().find("span").text(_("Items selected: " + number ) );
386
                $("#table_search_selections").show().find("span").html(_("Items selected: ") + number );
387
                $("#batch_mod_menu").removeClass("disabled").prop("disabled", false);
387
                $("#batch_mod_menu").removeClass("disabled").prop("disabled", false);
388
                $("#export-button").html(_("Export selected results (%s) to").format  ( number ) + caret);
388
                $("#export-button").html(_("Export selected results (%s) to").format  ( number ) + caret);
389
            } else {
389
            } else {
390
- 

Return to bug 39032