MediaWiki:Common.js: Difference between revisions

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


/*---------------------------22-06-2026---------------------------------------*/
/*---------------------------22-06-2026---------------------------------------*/
/* new block */
$(function () {
    $('.ekatra-right-author').each(function () {
        var $next = $(this).next('p');
        if (
            $next.length &&
            $next.find('br').length &&
            $.trim($next.text()) === ''
        ) {
            $next.remove();
        }
    });
});