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);
// Try to find the first paragraph or other elements
var $intro = $content.find('p, ul, ol, table').first();
if ($intro.length > 0) {
return $intro.html();
}
// If no suitable content is found, return a default message
return '<p>No introductory text available.</p>';
}
// Modify the popup content
var introText = getIntroText($popupContent.html());
$popupContent.html(introText);
});