MediaWiki:Common.js: Difference between revisions

MediaWiki interface page
No edit summary
mNo edit summary
 
(11 intermediate revisions by the same user not shown)
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:Embed.js');
importScript('MediaWiki:Bracket.js');
importScript('MediaWiki:DateTimezones.js');
/* Tournament team list */
(function () {
(function () {
  // If Participants team list with a toggle button is added, then make that button clickable
   var myElement = document.getElementById('team-toggle');
   var myElement = document.getElementById('team-toggle');
   if ( myElement ) {
   if (myElement) {
  myElement.addEventListener('click', function(){
    myElement.addEventListener('click', function (e) {
  console.log('clickediclick');
      if (e.target.innerHTML === 'Show Players')
  document.querySelectorAll('.team-list').forEach(function(el){
        e.target.innerHTML = 'Hide Players';
  console.log(el);
      else e.target.innerHTML = 'Show Players';
  el.classList.toggle('show');
      document.querySelectorAll('.team-list .players').forEach(function (el) {
  });
        el.classList.toggle('show');
  });
      });
    });
   }
   }
}());
})();

Latest revision as of 18:09, 9 October 2023

/* Any JavaScript here will be loaded for all users on every page load. */
importScript('MediaWiki:NewsForm.js');
importScript('MediaWiki:Embed.js');
importScript('MediaWiki:Bracket.js');
importScript('MediaWiki:DateTimezones.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');
      });
    });
  }
})();