MediaWiki:Minerva.js: Difference between revisions

From Halopedia, the Halo wiki

No edit summary
No edit summary
Line 1: Line 1:
/* All JavaScript here will be loaded for users of the MinervaNeue skin */
/* All JavaScript here will be loaded for users of the Minerva skin */


/* Collapse the navbox section */
/* Collapse the navbox section by default */
$(function() {
$(function() {
if ($(window).width() >= 720)
if ($(window).width() >= 720 && $('.navbox-section:visible').length)
$('.navbox-heading').click();
$('.navbox-heading').click();
});
});

Revision as of 23:41, April 11, 2021

/* All JavaScript here will be loaded for users of the Minerva skin */

/* Collapse the navbox section by default */
$(function() {
	if ($(window).width() >= 720 && $('.navbox-section:visible').length)
		$('.navbox-heading').click();
});