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

(-)a/koha-tmpl/intranet-tmpl/prog/js/authorities-detail-modal.js (-2 / +1 lines)
Lines 6-12 $(document).ready(function(){ Link Here
6
        $.get("/cgi-bin/koha/authorities/detail.pl", { authid : authid }, function( data ){
6
        $.get("/cgi-bin/koha/authorities/detail.pl", { authid : authid }, function( data ){
7
            var auth_detail = $(data).find("#authoritiestabs");
7
            var auth_detail = $(data).find("#authoritiestabs");
8
            auth_detail.find("ul").remove();
8
            auth_detail.find("ul").remove();
9
            $("#authorityDetail .modal-title").html(_("Authority") + " " + authid );
9
            $("#authorityDetail .modal-title").html(__("Authority") + " " + authid );
10
            $("#authorityDetail .modal-body").html( auth_detail );
10
            $("#authorityDetail .modal-body").html( auth_detail );
11
        });
11
        });
12
12
13
- 

Return to bug 29965