No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
// Move all references below Reports | // Move all references below Reports | ||
if ($(' | if ($('.mw-parser-output .mw-parser-output .mw-references-wrap').length > 0 && $('ul.mw-prefixindex-list').siblings('div.mw-inputbox-centered').length > 0) { | ||
$(' | $('.mw-parser-output .mw-parser-output .mw-references-wrap').detach().append($('.mw-references-wrap')); | ||
} | } | ||
Revision as of 07:56, 30 January 2024
/* Any JavaScript here will be loaded for all users on every page load. */
// Move all references below Reports
if ($('.mw-parser-output .mw-parser-output .mw-references-wrap').length > 0 && $('ul.mw-prefixindex-list').siblings('div.mw-inputbox-centered').length > 0) {
$('.mw-parser-output .mw-parser-output .mw-references-wrap').detach().append($('.mw-references-wrap'));
}
$("p").each(function() {
var $this = $(this);
if( $.trim($this.text()) == "") $this.remove();
});