MediaWiki:Common.js: Difference between revisions

MediaWiki interface page
(Replaced content with "→‎Any JavaScript here will be loaded for all users on every page load.: importScript('MediaWiki:NewsForm.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 Play...")
Tag: Replaced
No edit summary
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');
/* Tournament team list */
/* Tournament team list */
(function () {
(function () {

Revision as of 14:09, 12 May 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');
      });
    });
  }
})();