Lines 148-153
$('#sort_by').change(function() {
Link Here
|
148 |
window.location = '/cgi-bin/koha/catalogue/[% gotoPage %]?biblionumber=' + [% SEARCH_RESULTS.last.biblionumber %] + '&searchid=[% searchid %]'; |
148 |
window.location = '/cgi-bin/koha/catalogue/[% gotoPage %]?biblionumber=' + [% SEARCH_RESULTS.last.biblionumber %] + '&searchid=[% searchid %]'; |
149 |
[% END %] |
149 |
[% END %] |
150 |
[% END %] |
150 |
[% END %] |
|
|
151 |
|
152 |
[% IF LocalCoverImages %]KOHA.LocalCover.GetCoverFromBibnumber(false);[% END %] |
153 |
|
151 |
}); |
154 |
}); |
152 |
|
155 |
|
153 |
|
156 |
|
Lines 430-448
var holdForPatron = function () {
Link Here
|
430 |
<!-- TABLE RESULTS START --> |
433 |
<!-- TABLE RESULTS START --> |
431 |
<table> |
434 |
<table> |
432 |
<tr> |
435 |
<tr> |
433 |
[% IF ( AmazonCoverImages ) %]<th> </th>[% END %] |
436 |
[% IF ( AmazonCoverImages || LocalCoverImages ) %]<th> </th>[% END %] |
434 |
<th colspan="2">Results</th> |
437 |
<th colspan="2">Results</th> |
435 |
<th>Location</th> |
438 |
<th>Location</th> |
436 |
</tr> |
439 |
</tr> |
437 |
<!-- Actual Search Results --> |
440 |
<!-- Actual Search Results --> |
438 |
[% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %] |
441 |
[% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %] |
439 |
[% IF ( loop.odd ) %]<tr>[% ELSE %]<tr class="highlight">[% END %] |
442 |
[% IF ( loop.odd ) %]<tr>[% ELSE %]<tr class="highlight">[% END %] |
440 |
[% IF ( AmazonCoverImages ) %] |
443 |
[% IF ( AmazonCoverImages || LocalCoverImages ) %] |
441 |
<td> |
444 |
<td> |
442 |
<a class="p1" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% SEARCH_RESULT.biblionumber |url %]"> |
445 |
[% IF ( LocalCoverImages ) %] |
443 |
|
446 |
<span title="[% SEARCH_RESULT.biblionumber |url %]" class="[% SEARCH_RESULT.biblionumber %]" id="local-thumbnail[% loop.count %]"></span> |
444 |
<img src="[% IF ( SEARCH_RESULT.normalized_isbn ) %]http://images.amazon.com/images/P/[% SEARCH_RESULT.normalized_isbn %].01.TZZZZZZZ.jpg[% ELSE %]http://g-images.amazon.com/images/G/01/x-site/icons/no-img-sm.gif[% END %]" alt="" class="thumbnail" /> |
447 |
[% END %] |
445 |
</a></td> |
448 |
[% IF ( AmazonCoverImages ) %] |
|
|
449 |
<a class="p1" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% SEARCH_RESULT.biblionumber |url %]"> |
450 |
<img src="[% IF ( SEARCH_RESULT.normalized_isbn ) %]http://images.amazon.com/images/P/[% SEARCH_RESULT.normalized_isbn %].01.TZZZZZZZ.jpg[% ELSE %]http://g-images.amazon.com/images/G/01/x-site/icons/no-img-sm.gif[% END %]" alt="" class="thumbnail" /> |
451 |
</a> |
452 |
[% END %] |
453 |
</td> |
446 |
[% END %] |
454 |
[% END %] |
447 |
<td> |
455 |
<td> |
448 |
<input type="checkbox" class="selection" id="bib[% SEARCH_RESULT.biblionumber %]" name="biblionumber" value="[% SEARCH_RESULT.biblionumber %]" style="display:none" /> |
456 |
<input type="checkbox" class="selection" id="bib[% SEARCH_RESULT.biblionumber %]" name="biblionumber" value="[% SEARCH_RESULT.biblionumber %]" style="display:none" /> |
449 |
- |
|
|