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 |
- |
|
|