[Koha-patches] [PATCH] BUG 11602 [ENH] - Fix localcover display Adds a css class of thumbnail to local covers Don't show the 1px "No image found" image (since we'll ususally try another image provider)

Nicholas van Oudtshoorn vanoudt at gmail.com
Thu May 15 07:32:46 CEST 2014


---
 koha-tmpl/opac-tmpl/bootstrap/js/localcovers.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/koha-tmpl/opac-tmpl/bootstrap/js/localcovers.js b/koha-tmpl/opac-tmpl/bootstrap/js/localcovers.js
index 7bd7ae2..d407ef6 100644
--- a/koha-tmpl/opac-tmpl/bootstrap/js/localcovers.js
+++ b/koha-tmpl/opac-tmpl/bootstrap/js/localcovers.js
@@ -27,6 +27,7 @@ KOHA.LocalCover = {
             var img = $("<img />").attr('src',
                 '/cgi-bin/koha/opac-image.pl?thumbnail=1&biblionumber=' + $(mydiv).attr("class"))
                 .load(function () {
+                    this.setAttribute("class", "thumbnail");
                     if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) {
                         //IE HACK
                         try {
@@ -35,7 +36,7 @@ KOHA.LocalCover = {
                         }
                         catch(err){
                         };
-                    } else {
+                    } else if (this.width > 1) { // don't show the silly 1px "no image" img
                         if (uselink) {
                             var a = $("<a />").attr('href', '/cgi-bin/koha/opac-imageviewer.pl?biblionumber=' + $(mydiv).attr("class"));
                             $(a).append(img);
-- 
1.8.3.1



More information about the Koha-patches mailing list