Bug 29803: Prevent local cover image to be hidden if Coce is enabled
If Coce is enabled by no image are returned by the service, then no other image will be displayed (actually un-hidden) The getURL is returning early if no image is returned by the service and the "done" flag is never set. Test plan: Add a local cover image to a bibliographic record (ktd biblionumber=14 is good) Set CoceHost = http://coce.bywatersolutions.com Select all CoceProviders Enable OpacCoce => If no image is returned by Coce then the local image should be displayed anyway Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
This commit is contained in:
parent
450b629ed3
commit
1513cd66b6
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ KOHA.coce = {
|
|||
var id = $(this).attr("class"); // id=isbn
|
||||
if (id !== '') { ids.push(id); }
|
||||
});
|
||||
if (ids.length == 0) return;
|
||||
if (ids.length == 0) { this.done = 1; return; }
|
||||
ids = ids.join(',');
|
||||
var coceURL = host + '/cover?id=' + ids + '&provider=' + provider;
|
||||
$.ajax({
|
||||
|
|
Loading…
Reference in a new issue