Jump to content

MediaWiki:Common.js: Difference between revisions

An idea by Jeff Lawlor
Created on 2025-04-25
No edit summary
No edit summary
Line 25: Line 25:
$('.infobox-panel.' + tab).show();
$('.infobox-panel.' + tab).show();
$('.infobox-tab').removeClass('active');
$('.infobox-tab').removeClass('active');
$('.infobox-tab.' + tab).addClass('active');
$(e.target).addClass('active');
});
});

Revision as of 17:57, 16 May 2025

console.log("✅ MediaWiki:Common.js loaded");


/* Any JavaScript here will be loaded for all users on every page load. 
document.addEventListener('DOMContentLoaded', function () {
  document.querySelectorAll('.infobox-tab').forEach(button => {
  	console.log("Found button");
    button.addEventListener('click', () => {
	console.log("✅  Taba licked!");

      const tab = button.dataset.tab;
      document.querySelectorAll('.infobox-panel').forEach(panel => panel.style.display = 'none');
      document.querySelector('.infobox-panel.' + tab).style.display = 'block';
      document.querySelectorAll('.infobox-tab').forEach(b => b.classList.remove('active'));
      button.classList.add('active');
    });
  });
});
*/

$('.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');
	});