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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt (-1 / +3 lines)
Lines 410-416 Link Here
410
410
411
        function closeandprint(bg){
411
        function closeandprint(bg){
412
            if(document.location = '/cgi-bin/koha/acqui/basketgroup.pl?op=closeandprint&basketgroupid=' + bg ){
412
            if(document.location = '/cgi-bin/koha/acqui/basketgroup.pl?op=closeandprint&basketgroupid=' + bg ){
413
                setTimeout("window.location.reload();", 3000);
413
                setTimeout(() => {
414
                    window.location.reload();
415
                }, 3000);
414
            } else {
416
            } else {
415
                alert( _("Error downloading the file") );
417
                alert( _("Error downloading the file") );
416
            }
418
            }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt (-1 / +3 lines)
Lines 640-646 Link Here
640
                window.onafterprint = function () {
640
                window.onafterprint = function () {
641
                    window.close();
641
                    window.close();
642
                };
642
                };
643
                setTimeout("window.close()", 1000); // Hack for Chrome < 63
643
                setTimeout(() => {
644
                    window.close();
645
                }, 1000); // Hack for Chrome < 63
644
            });
646
            });
645
        </script>
647
        </script>
646
    [% END #/print %]
648
    [% END #/print %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/js/basket.js (-2 / +1 lines)
Lines 209-215 function showCartUpdate(msg) { Link Here
209
    // set body of popup window
209
    // set body of popup window
210
    $("#cartDetails").html(msg);
210
    $("#cartDetails").html(msg);
211
    showCart();
211
    showCart();
212
    setTimeout("hideCart()", 2000);
212
    setTimeout(hideCart, 2000);
213
}
213
}
214
214
215
function showListsUpdate(msg) {
215
function showListsUpdate(msg) {
216
- 

Return to bug 39262