MediaWiki:Common.js: Difference between revisions

MediaWiki interface page
No edit summary
mNo edit summary
Tag: Reverted
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
importScript('MediaWiki:NewsForm.js');
// importScript('MediaWiki:NewsForm.js');
importScript('MediaWiki:Embed.js');
// importScript('MediaWiki:Embed.js');
/* Tournament team list */
/* Tournament team list */
(function () {
(function () {

Revision as of 15:30, 17 June 2023

/* Any JavaScript here will be loaded for all users on every page load. */
// importScript('MediaWiki:NewsForm.js');
// importScript('MediaWiki:Embed.js');
/* Tournament team list */
(function () {
  // If Participants team list with a toggle button is added, then make that button clickable
  var myElement = document.getElementById('team-toggle');
  if (myElement) {
    myElement.addEventListener('click', function (e) {
      if (e.target.innerHTML === 'Show Players')
        e.target.innerHTML = 'Hide Players';
      else e.target.innerHTML = 'Show Players';
      document.querySelectorAll('.team-list .players').forEach(function (el) {
        el.classList.toggle('show');
      });
    });
  }
})();