From afa51869c39e1a450314a6d13098571566cc241c Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 26 Jul 2018 15:36:24 +0000 Subject: [PATCH] Bug 19511: Local cover images not centered in table column in staff client search results MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This patch modifies the JavaScript which embeds local cover images in staff client catalog search results. It now adds the "thumbail" class to the image, matching Amazon cover images. To test you should have one or more titles with local cover images attached. Apply the patch and clear your browser cache if necessary. Enable both the AmazonCoverImages and LocalCoverImages system preferences and perform a search which will return titles with local cover images. Confirm that local covers are styled like Amazon covers. Tested and confirmed local cover images are appearing quite nicely now. Signed-off-by: Dilan Johnpullé Signed-off-by: Jonathan Druart Signed-off-by: Nick Clemens --- koha-tmpl/intranet-tmpl/prog/js/localcovers.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/localcovers.js b/koha-tmpl/intranet-tmpl/prog/js/localcovers.js index ac1f885dcf..fe6aeac897 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/localcovers.js +++ b/koha-tmpl/intranet-tmpl/prog/js/localcovers.js @@ -56,8 +56,9 @@ KOHA.LocalCover = { $(message).html(NO_LOCAL_JACKET); $(mydiv).append(message); var img = $(""); - img.attr('src','/cgi-bin/koha/catalogue/image.pl?thumbnail=1&biblionumber=' + $(mydiv).attr("class")); - img.load(function () { + img.attr('src','/cgi-bin/koha/catalogue/image.pl?thumbnail=1&biblionumber=' + $(mydiv).attr("class")) + .addClass("thumbnail") + .load(function () { if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth <= 1) { //IE HACK try { -- 2.20.1