MediaWiki:Common.js: Difference between revisions

No edit summary
Tag: Manual revert
No edit summary
Line 1,388: Line 1,388:


/*---------------------------22-06-2026---------------------------------------*/
/*---------------------------22-06-2026---------------------------------------*/
$(function () {
    $('.ekatra-right-author').each(function () {
        $(this).nextAll('p').each(function () {
            if ($.trim($(this).text()) === '') {
                $(this).remove();
            } else {
                return false;
            }
        });
    });
});