mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-27 17:00:37 +00:00
render.article: Make the title of the text bold in the extract
Bug: 65098 Change-Id: Ibd7c821d538acd2045e0ffb9a8b2274d61d99484
This commit is contained in:
parent
e4d18a1c0e
commit
046a34b9a0
|
@ -89,8 +89,9 @@
|
|||
page = re.query.pages[ re.query.pageids[ 0 ] ],
|
||||
$contentbox = $( '<div>' )
|
||||
.addClass( 'mwe-popups-extract' )
|
||||
.text( page.extract.replace( /\([^)]*\)\s+/, '' ) ),
|
||||
// Remove text in brackets along with the brackets
|
||||
.html(
|
||||
article.getProcessedHtml( page.extract, page.title )
|
||||
),
|
||||
thumbnail = page.thumbnail,
|
||||
tall = thumbnail && thumbnail.height > thumbnail.width,
|
||||
$thumbnail = article.createThumbnail( thumbnail, tall ),
|
||||
|
@ -120,6 +121,24 @@
|
|||
return $a;
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns an HTML after removing the brackets from the extract
|
||||
* and making the title in the extract bold
|
||||
*
|
||||
* @method getProcessedHtml
|
||||
* @param {String} extract
|
||||
* @param {String} title
|
||||
* @return {String}
|
||||
*/
|
||||
article.getProcessedHtml = function ( extract, title ) {
|
||||
var regExp = new RegExp( '(^|\\s)(' + title + ')(\\s|$)', 'ig' );
|
||||
// Make title bold in the extract text
|
||||
extract = extract.replace( regExp, '$1<b>$2</b>$3' );
|
||||
// Remove text in brackets along with the brackets
|
||||
extract = extract.replace( /\([^)]*\)\s+/, '' );
|
||||
return extract;
|
||||
};
|
||||
|
||||
/**
|
||||
* Use createElementNS to create the svg:image tag as jQuery
|
||||
* uses createElement instead. Some browsers map the `image` tag
|
||||
|
|
Loading…
Reference in a new issue