Lines 6-11
Link Here
|
6 |
<title>Koha › Patron search</title> |
6 |
<title>Koha › Patron search</title> |
7 |
[% INCLUDE 'doc-head-close.inc' %] |
7 |
[% INCLUDE 'doc-head-close.inc' %] |
8 |
[% Asset.css("css/datatables.css") %] |
8 |
[% Asset.css("css/datatables.css") %] |
|
|
9 |
<style> .modal-body .close { display: none; } </style> |
9 |
</head> |
10 |
</head> |
10 |
|
11 |
|
11 |
<body id="common_patron_search" class="common"> |
12 |
<body id="common_patron_search" class="common"> |
Lines 88-93
Link Here
|
88 |
</div> |
89 |
</div> |
89 |
|
90 |
|
90 |
<div id="closewindow"><a href="#" class="btn btn-default btn-default close">Close</a></div> |
91 |
<div id="closewindow"><a href="#" class="btn btn-default btn-default close">Close</a></div> |
|
|
92 |
|
93 |
<!-- Patron preview modal --> |
94 |
<div class="modal" id="patronPreview" tabindex="-1" role="dialog" aria-labelledby="patronPreviewLabel"> |
95 |
<div class="modal-dialog" role="document"> |
96 |
<div class="modal-content"> |
97 |
<div class="modal-header"> |
98 |
<button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> |
99 |
<h4 class="modal-title" id="patronPreviewLabel"></h4> |
100 |
</div> |
101 |
<div class="modal-body"> |
102 |
<div id="loading"> |
103 |
<img src="[% interface %]/[% theme %]/img/spinner-small.gif" alt="" /> Loading |
104 |
</div> |
105 |
</div> |
106 |
<div class="modal-footer"> |
107 |
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button> |
108 |
</div> |
109 |
</div> |
110 |
</div> |
111 |
</div> |
112 |
|
91 |
</div> |
113 |
</div> |
92 |
</div> |
114 |
</div> |
93 |
|
115 |
|
Lines 202-207
Link Here
|
202 |
select_user( borrowernumber, JSON.parse(borrower_data) ); |
224 |
select_user( borrowernumber, JSON.parse(borrower_data) ); |
203 |
}); |
225 |
}); |
204 |
|
226 |
|
|
|
227 |
$("body").on("click",".patron_preview", function( e ){ |
228 |
e.preventDefault(); |
229 |
var borrowernumber = $(this).data("borrowernumber"); |
230 |
var page = "/cgi-bin/koha/members/moremember.pl?print=brief&borrowernumber=" + borrowernumber; |
231 |
$("#patronPreview .modal-body").load( page + " div.container-fluid" ); |
232 |
$('#patronPreview').modal({show:true}); |
233 |
}); |
234 |
|
205 |
}); |
235 |
}); |
206 |
|
236 |
|
207 |
function filter() { |
237 |
function filter() { |