mirror of
https://github.com/janeczku/calibre-web
synced 2024-12-26 10:00:37 +00:00
Minor fixes to caliBlur.js
- Add alt attributes to images - Fix a broken tag
This commit is contained in:
parent
189243a9b0
commit
30c9aa3df9
@ -140,9 +140,9 @@ if ( $( 'body.book' ).length > 0 ) {
|
|||||||
// Sexy blurred backgrounds
|
// Sexy blurred backgrounds
|
||||||
cover = $( '.cover img' ).attr( 'src' );
|
cover = $( '.cover img' ).attr( 'src' );
|
||||||
$( '#loader + .container-fluid' )
|
$( '#loader + .container-fluid' )
|
||||||
.prepend( '<div class="blur-wrapper"></div' );
|
.prepend( '<div class="blur-wrapper"></div>' );
|
||||||
$( '.blur-wrapper' )
|
$( '.blur-wrapper' )
|
||||||
.prepend( '<div><img class="bg-blur" src="' + cover + '"></div>' );
|
.prepend( '<div><img alt="Blurred cover" class="bg-blur" src="' + cover + '"></div>' );
|
||||||
|
|
||||||
// Fix-up book detail headings
|
// Fix-up book detail headings
|
||||||
publisher = $( '.publishers p span' ).text().split( ':' );
|
publisher = $( '.publishers p span' ).text().split( ':' );
|
||||||
@ -442,7 +442,7 @@ if ( $( 'body.author' ).length >0 ) {
|
|||||||
cover = $( '.author-bio img' ).attr( 'src' );
|
cover = $( '.author-bio img' ).attr( 'src' );
|
||||||
$( '#loader + .container-fluid' )
|
$( '#loader + .container-fluid' )
|
||||||
.prepend( '<div class="blur-wrapper"></div>' );
|
.prepend( '<div class="blur-wrapper"></div>' );
|
||||||
$( '.blur-wrapper' ).prepend( '<img class="bg-blur" src="' + cover + '">' );
|
$( '.blur-wrapper' ).prepend( '<img alt="Blurred author bio" class="bg-blur" src="' + cover + '">' );
|
||||||
// Place undefined cover images inside container
|
// Place undefined cover images inside container
|
||||||
if ( $( '.bg-blur[src="undefined"]' ).length > 0 ) {
|
if ( $( '.bg-blur[src="undefined"]' ).length > 0 ) {
|
||||||
$( '.bg-blur' ).before( '<div class="bg-blur undefined-img"></div>' );
|
$( '.bg-blur' ).before( '<div class="bg-blur undefined-img"></div>' );
|
||||||
|
Loading…
Reference in New Issue
Block a user