No edit summary |
mNo edit summary |
||
(12 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 (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'); | |||
}); | |||
}); | |||
} | } | ||
}( | })(); |
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');
});
});
}
})();