User:Ricewind/common.js: Difference between revisions

From Melvor Idle
No edit summary
(Blanked the page)
Tags: Blanking Manual revert
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
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);
});

Latest revision as of 13:24, 19 July 2024