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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt (+3 lines)
Lines 951-956 $(function() { Link Here
951
                    });
951
                    });
952
                }
952
                }
953
                confirmModal( message, title, yes_label, no_label, function( result ){
953
                confirmModal( message, title, yes_label, no_label, function( result ){
954
                    $("#bootstrap-confirm-box-modal").remove();
954
                    if( result ){
955
                    if( result ){
955
                        if( selected_titles.size() == 1 ){
956
                        if( selected_titles.size() == 1 ){
956
                            $("#shelf_delete_biblionumber").val( biblionumber );
957
                            $("#shelf_delete_biblionumber").val( biblionumber );
Lines 1009-1014 $(function() { Link Here
1009
            message += "<p>" + _("This list is shared. Other users will lose access to it.") + "</p>";
1010
            message += "<p>" + _("This list is shared. Other users will lose access to it.") + "</p>";
1010
        }
1011
        }
1011
        confirmModal( message, _("Are you sure you want to delete this list?"), _("Yes, delete"), _("No, do not delete"), function( result ){
1012
        confirmModal( message, _("Are you sure you want to delete this list?"), _("Yes, delete"), _("No, do not delete"), function( result ){
1013
                $("#bootstrap-confirm-box-modal").remove();
1012
                if( result ){
1014
                if( result ){
1013
                    $("#deleteshelf" + shelf_number ).submit();
1015
                    $("#deleteshelf" + shelf_number ).submit();
1014
                }
1016
                }
Lines 1021-1026 $(function() { Link Here
1021
        var shelf_name = $(this).data("shelfname");
1023
        var shelf_name = $(this).data("shelfname");
1022
        var shelf_number = $(this).data("shelfnumber");
1024
        var shelf_number = $(this).data("shelfnumber");
1023
        confirmModal( shelf_name, _("Are you sure you want to remove sharing? You will no longer have access to the list."), _("Yes, remove sharing"), _("No, do not remove sharing"), function( result ){
1025
        confirmModal( shelf_name, _("Are you sure you want to remove sharing? You will no longer have access to the list."), _("Yes, remove sharing"), _("No, do not remove sharing"), function( result ){
1026
                $("#bootstrap-confirm-box-modal").remove();
1024
                if( result ){
1027
                if( result ){
1025
                    $("#unshare" + shelf_number ).submit();
1028
                    $("#unshare" + shelf_number ).submit();
1026
                }
1029
                }
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt (+1 lines)
Lines 639-644 Link Here
639
                    });
639
                    });
640
                }
640
                }
641
                confirmModal( message, title, yes_label, no_label, function( result ){
641
                confirmModal( message, title, yes_label, no_label, function( result ){
642
                    $("#bootstrap-confirm-box-modal").remove();
642
                    if( result ){
643
                    if( result ){
643
                        $("#delete_suggestions").submit();
644
                        $("#delete_suggestions").submit();
644
                    }
645
                    }
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt (+1 lines)
Lines 256-261 Link Here
256
                    });
256
                    });
257
                }
257
                }
258
                confirmModal( message, title, yes_label, no_label, function( result ){
258
                confirmModal( message, title, yes_label, no_label, function( result ){
259
                    $("#bootstrap-confirm-box-modal").remove();
259
                    if( result ){
260
                    if( result ){
260
                        $("#deletetags").submit();
261
                        $("#deletetags").submit();
261
                    }
262
                    }
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt (-1 / +1 lines)
Lines 613-618 Link Here
613
                [% IF Koha.Preference('SelfCheckReceiptPrompt') %]
613
                [% IF Koha.Preference('SelfCheckReceiptPrompt') %]
614
                    var confirmStart = Date.now();
614
                    var confirmStart = Date.now();
615
                    confirmModal("", _("Would you like to print a receipt?"), _("Print receipt and end session"), _("End session"), function(result) {
615
                    confirmModal("", _("Would you like to print a receipt?"), _("Print receipt and end session"), _("End session"), function(result) {
616
                        $("#bootstrap-confirm-box-modal").remove();
616
                        if ( result && (Date.now() - confirmStart) < [% SelfCheckTimeout | html %] ) {
617
                        if ( result && (Date.now() - confirmStart) < [% SelfCheckTimeout | html %] ) {
617
                            var win = window.open("/cgi-bin/koha/sco/printslip.pl?print=qslip");
618
                            var win = window.open("/cgi-bin/koha/sco/printslip.pl?print=qslip");
618
                            location.href = '/cgi-bin/koha/sco/sco-main.pl?op=logout';
619
                            location.href = '/cgi-bin/koha/sco/sco-main.pl?op=logout';
619
- 

Return to bug 38268