@@ -, +, @@ - If necessary, activate one or more cover image services in Administration, e.g. OPACAmazonCoverImages, OPACLocalCoverImages, and/or OpenLibraryCovers. - In the OPAC, locate a bibliographic record which has a cover image from one or more of the services you activated. - On the detail page for that record, the cover should load correctly. - In the browser console you should see no errors related to a file not found: /opac-tmpl/bootstrap/img/spinner-small.gif - In the browser console, submit this JavaScript snippet: $(".cover-image").remove(); The cover image should disappear, revealing the "spinner" icon behind it. --- koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -709,7 +709,7 @@ th { } .cover-slides { - background: #FFF url("../img/spinner-small.gif") center center no-repeat; + background: #FFF url("../images/spinner-small.gif") center center no-repeat; .hint { font-size: 80%; @@ -728,7 +728,7 @@ th { td { &.bookcover { - background: #FFF url("../img/spinner-small.gif") center center no-repeat; + background: #FFF url("../images/spinner-small.gif") center center no-repeat; min-width: 120px; text-align: center; } --