@@ -, +, @@ =?UTF-8?q?visible=20when=20cover=20image=20is=20short=20(OPAC)?= 1.1. Go to Administration > Global system preferences 1.2. Search for Coverimages 1.3. Set OPACLocalCoverImages to 'Show' 1.4. Click 'Save all Enhanced content preferences' 2.1. Download the attached image 2.2. Find a record without an image 2.3. Click the 'Images' tab 2.4. Click 'Upload' 2.5. Click 'Drop files here or click to select a file' and choose the downloaded image 2.6. Click 'Process images' 3.1. From the image upload page, click on the title of the record in the page heading to access the detailed record in the staff interface 3.2. Click on 'OPAC view: Open in new window.' --> Note that the image is displayed normally, but the spinner is also displayed --> Note that the spinner is no more displayed --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt | 4 ++++ 1 file changed, 4 insertions(+) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt @@ -1663,6 +1663,10 @@ $(window).load(function() { wait_for_images(verify_cover_images); + var image = document.querySelector('.cover-image img'); + if(image.complete && image.naturalHeight!== 0){ + $(".cover-slider").removeClass("cover-slides"); + } }); $(document).ready(function() { --