mirror of
				https://github.com/janeczku/calibre-web
				synced 2025-10-31 15:23:02 +00:00 
			
		
		
		
	Fix publisher not formatting correct (#747)
This commit is contained in:
		| @@ -215,11 +215,15 @@ if ( $( 'body.book' ).length > 0 ) { | |||||||
|     .prepend( '<div><img class="bg-blur" src="' + cover + '"></div>' ); |     .prepend( '<div><img 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( ':' ); | ||||||
|   $( '.publishers p span' ).remove(); |   $( '.publishers p span' ).remove(); | ||||||
|   $.each(publisher, function(i, val) { |   $.each(publisher, function(i, val) { | ||||||
|     $( '.publishers' ).append( '<span>' + publisher[i] + '</span>' ); |     $( '.publishers' ).append( '<span>' + publisher[i] + '</span>' ); | ||||||
|   }); |   }); | ||||||
|  | $( '.publishers span:nth-child(2)' ).text(function() { | ||||||
|  | return $(this).text().replace(/^\s+/g, ""); | ||||||
|  | }); | ||||||
|  |  | ||||||
|   published = $( '.book-meta p:contains("Publishing date")' ) |   published = $( '.book-meta p:contains("Publishing date")' ) | ||||||
|   .text().split(': '); |   .text().split(': '); | ||||||
|   $( '.book-meta p:contains("Publishing date")' ) |   $( '.book-meta p:contains("Publishing date")' ) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 hexeth
					hexeth