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 Minerva skin */
/* Any JavaScript here will be loaded for users of the Minerva skin */


/* Collapse the navbox section by default */
/* Collapse the navbox section by default */

Revision as of 00:51, April 12, 2021

/* Any 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();
});