(matrixName)
| 57 | } |
| 58 | |
| 59 | function showMatrix(matrixName) { |
| 60 | // Hide all matrix tables |
| 61 | const allMatrixContainers = document.querySelectorAll( |
| 62 | ".matrix-table-container", |
| 63 | ); |
| 64 | allMatrixContainers.forEach((container) => { |
| 65 | container.style.display = "none"; |
| 66 | }); |
| 67 | |
| 68 | // Show the selected matrix |
| 69 | const selectedContainer = document.getElementById(`matrix-${matrixName}`); |
| 70 | if (selectedContainer) { |
| 71 | selectedContainer.style.display = "block"; |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | function setupMatrixTooltips() { |
| 76 | // No JavaScript tooltips needed - using HTML title attributes |
no outgoing calls
no test coverage detected