MediaWiki:Common.js: Difference between revisions
No edit summary Tags: Mobile edit Mobile web edit |
No edit summary Tags: Reverted Mobile edit Mobile web edit |
||
| Line 3: | Line 3: | ||
// Click event for About Idea infobox | // Click event for About Idea infobox | ||
$('.infobox-tab').click(function(e) { | $('.infobox-tab').click(function(e) { | ||
alert('clicked'); | |||
var tab = $(e.target).attr('data-tab'); | var tab = $(e.target).attr('data-tab'); | ||
$('.infobox-panel').hide(); | $('.infobox-panel').hide(); | ||
Revision as of 16:13, 29 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) {
alert('clicked');
var tab = $(e.target).attr('data-tab');
$('.infobox-panel').hide();
$('.infobox-panel.' + tab).show();
$('.infobox-tab').removeClass('active');
$(e.target).addClass('active');
});
$(document).ready(function() {
// Remove duplicate About Idea Supreme footer link on desktop. See LocalSettings.php for more details
$('#footer-places-about').remove();
// Move infoboxes to the bottom of the article in mobile
if ($('body').hasClass('skin-minerva')) {
var infoboxes = $('.mw-parser-output .infobox-idea');
// Move them to the end of the section
$('.mw-parser-output').append(infoboxes);
}
});