Fix targeting for language support (#761)

Some other languages use 'description :' instead of 'description:' .
This commit is contained in:
hexeth
2019-01-10 18:26:34 +01:00
committed by Ozzie Isaacs
parent dba5680121
commit e1205b75cd
+2 -2
View File
@@ -128,8 +128,8 @@ if ( $( 'body.book' ).length > 0 ) {
}*/
description = $( '.comments' );
bookInfo = $( '.author' ).nextUntil( 'h3:contains("Description:")');
$( 'h3:contains("Description:")' ).detach();
bookInfo = $( '.author' ).nextUntil( 'h3:contains("Description")');
$( 'h3:contains("Description")' ).detach();
$( '.comments' ).detach();
$( bookInfo ).wrapAll( '<div class="bookinfo"></div>' );
// $( 'h3:contains("Description:")' ).after( '<div class="description"></div>' );