MediaWiki:Common.js: Difference between revisions

From Melvor Idle
m (Changed let to var)
mNo edit summary
Line 13: Line 13:
       firstHeight = firstRow[0].offsetHeight;
       firstHeight = firstRow[0].offsetHeight;
       const firstHeaders = firstRow[0].getElementsByTagName('th');
       const firstHeaders = firstRow[0].getElementsByTagName('th');
       for (let j = 0; j < firstHeaders.length; j++) {
       for (var j = 0; j < firstHeaders.length; j++) {
         firstHeaders[j].style.top = `${headHeight}px`;
         firstHeaders[j].style.top = `${headHeight}px`;
       }
       }
       if (secondRow.length > 0) {
       if (secondRow.length > 0) {
         const secondHeaders = secondRow[0].getElementsByTagName('th');
         const secondHeaders = secondRow[0].getElementsByTagName('th');
         for (let j = 0; j < secondHeaders.length; j++) {
         for (var j = 0; j < secondHeaders.length; j++) {
           secondHeaders[j].style.top = `${headHeight + firstHeight}px`;
           secondHeaders[j].style.top = `${headHeight + firstHeight}px`;
         }
         }
Line 24: Line 24:
     }
     }
   }
   }
});
});
});

Revision as of 00:32, 12 June 2020

/* Any JavaScript here will be loaded for all users on every page load. */

/* Sets the top property for stickyHeader tables */

$(document).ready(function() {
  const stickyTables = document.getElementsByClassName('stickyHeader');
  const headHeight = document.getElementById('mw-header-container').offsetHeight;
  for (var i = 0; i < stickyTables.length; i++) {
    const firstRow = stickyTables[i].getElementsByClassName('firstHeaderRow');
    const secondRow = stickyTables[i].getElementsByClassName('secondHeaderRow');
    var firstHeight = 0;
    if (firstRow.length > 0) {
      firstHeight = firstRow[0].offsetHeight;
      const firstHeaders = firstRow[0].getElementsByTagName('th');
      for (var j = 0; j < firstHeaders.length; j++) {
        firstHeaders[j].style.top = `${headHeight}px`;
      }
      if (secondRow.length > 0) {
        const secondHeaders = secondRow[0].getElementsByTagName('th');
        for (var j = 0; j < secondHeaders.length; j++) {
          secondHeaders[j].style.top = `${headHeight + firstHeight}px`;
        }
      }
    }
  }
});