MediaWiki:Common.js: Difference between revisions
Default dark mode to OS preference |
Need to set the dark mode cookie server side. |
||
| Line 19: | Line 19: | ||
} | } | ||
}); | }); | ||
Revision as of 17:35, 13 November 2025
/* Any JavaScript here will be loaded for all users on every page load. */
// Click event for About Idea infobox
$('.infobox-tab').click(function(e) {
var tab = $(e.target).attr('data-tab');
$('.infobox-panel').hide();
$('.infobox-panel.' + tab).show();
$('.infobox-tab').removeClass('active');
$(e.target).addClass('active');
});
// Move infoboxes to the bottom of the article in mobile
$(document).ready(function() {
if ($('body').hasClass('skin-minerva')) {
var infoboxes = $('#mf-section-0 .infobox-idea');
// Move them to the end of the section
$('#mf-section-0').append(infoboxes);
}
});