MediaWiki:Common.js: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 6: Line 6:
$('div.mw-inputbox-centered + ol.references').before('<h2><span class="mw-headline" id="Citations">Citations</span></h2>');
$('div.mw-inputbox-centered + ol.references').before('<h2><span class="mw-headline" id="Citations">Citations</span></h2>');
}
}
$("p").each(function() {
    var $this = $(this);
    if( $.trim($this.text()) == "") $this.remove();
});

Revision as of 07:06, 30 January 2024

/* Any JavaScript here will be loaded for all users on every page load. */

// Move imported references below Reports
if ($('ol.references').length > 0 && $('ul.mw-prefixindex-list').siblings('div.mw-inputbox-centered').length > 0) {
	$('ol.references').detach().insertAfter($('ul.mw-prefixindex-list').siblings('div.mw-inputbox-centered'));
	$('div.mw-inputbox-centered + ol.references').before('<h2><span class="mw-headline" id="Citations">Citations</span></h2>');
}

$("p").each(function() {
    var $this = $(this);
    if( $.trim($this.text()) == "") $this.remove();
});