MediaWiki:Common.js: Difference between revisions
No edit summary |
No edit summary |
||
| Line 229: | Line 229: | ||
$( function(){ | |||
var countPoem2 = $(".Poem2-Ekatra"); | var countPoem2 = $(".Poem2-Ekatra"); | ||
| Line 264: | Line 264: | ||
}); | }); | ||
} | } | ||
}); | }); | ||
| Line 1,436: | Line 1,384: | ||
title.insertAfter(booksHeading); | title.insertAfter(booksHeading); | ||
} | } | ||
}); | |||
/*---------------------------22-06-2026---------------------------------------*/ | |||
$(function () { | |||
$('.ekatra-right-author').each(function () { | |||
var $next = $(this).next(); | |||
while ( | |||
$next.length && | |||
$next.is('p') && | |||
$.trim($next.text()) === '' | |||
) { | |||
var $remove = $next; | |||
$next = $next.next(); | |||
$remove.remove(); | |||
} | |||
}); | |||
}); | }); | ||