MediaWiki:Bracket.js

MediaWiki interface page

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
$(document).ready(function(){
const matchElements = document.querySelectorAll('.match');
if (matchElements.length > 0) {
  // Add event listeners to each match element
  matchElements.forEach(matchElement => {
    matchElement.addEventListener('mouseover', () => {
      // Get the position of the .match element
      var matchRect
      if ( matchElement.querySelector(':scope > .reverse') ) {
          matchRect = matchElement.querySelector(':scope > .team.reverse').getBoundingClientRect();
      } else { matchRect = matchElement.querySelector('.team').getBoundingClientRect();}

      // Position the .match-details element to the right of the .match element
      const matchDetails = matchElement.querySelector('.match-details');
      if (matchDetails) {
        matchDetails.style.position = 'fixed';
        matchDetails.style.top = `${matchRect.top}px`; // Keep the bottom position the same as .match
        matchDetails.style.left = `${matchRect.right}px`; // Position to the right of .match
        matchDetails.style.transform = 'translateY(-25%)';
        matchDetails.style.width = '360px';
      }
    });
  });
}
});