User:Ricewind/common.js
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
mw.hook('pp.render').add(function(popup) {
var $popupContent = popup.$body;
// Function to get the introductory paragraph
function getIntroText(content) {
var $content = $('<div>').html(content);
// Remove everything after the first paragraph
var $paragraphs = $content.find('p');
if ($paragraphs.length > 0) {
return $paragraphs.first().html();
}
return '';
}
// Modify the popup content
var introText = getIntroText($popupContent.html());
$popupContent.html(introText);
});