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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/alert-subscriptions.tt (-1 / +1 lines)
Lines 109-115 Link Here
109
            $(".unsubscribe").submit(function(){
109
            $(".unsubscribe").submit(function(){
110
                var patron = $(this).data('patron');
110
                var patron = $(this).data('patron');
111
                var title = $(this).data('title');
111
                var title = $(this).data('title');
112
                return confirmDelete(__("Are you sure you want to unsubscribe %s from email alerts for %s?").format(patron, title));
112
                return confirmDelete(_("Are you sure you want to unsubscribe %s from email alerts for %s?").format(patron, title));
113
            });
113
            });
114
        });
114
        });
115
    </script>
115
    </script>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-2 / +2 lines)
Lines 1854-1863 legend.collapsed i.fa.fa-caret-down::before { Link Here
1854
        function togglePanel( node ){
1854
        function togglePanel( node ){
1855
            var panel = node.nextAll();
1855
            var panel = node.nextAll();
1856
            if(panel.is(":visible")){
1856
            if(panel.is(":visible")){
1857
                node.addClass("collapsed").removeClass("expanded").attr("title", __("Click to expand this section") );
1857
                node.addClass("collapsed").removeClass("expanded").attr("title", _("Click to expand this section") );
1858
                panel.hide();
1858
                panel.hide();
1859
            } else {
1859
            } else {
1860
                node.addClass("expanded").removeClass("collapsed").attr("title", __("Click to collapse this section") );
1860
                node.addClass("expanded").removeClass("collapsed").attr("title", _("Click to collapse this section") );
1861
                panel.show();
1861
                panel.show();
1862
                panel.find("input, select, textarea").eq(0).focus();
1862
                panel.find("input, select, textarea").eq(0).focus();
1863
            }
1863
            }
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-alert-subscriptions.tt (-2 / +1 lines)
Lines 105-111 Link Here
105
        $(".unsubscribe").submit(function(){
105
        $(".unsubscribe").submit(function(){
106
            var patron = $(this).data('patron');
106
            var patron = $(this).data('patron');
107
            var title = $(this).data('title');
107
            var title = $(this).data('title');
108
            return confirmDelete(__("Are you sure you want to unsubscribe %s from email alerts for %s?").format(patron, title));
108
            return confirmDelete(_("Are you sure you want to unsubscribe %s from email alerts for %s?").format(patron, title));
109
        });
109
        });
110
    });
110
    });
111
</script>
111
</script>
112
- 

Return to bug 37814