MCPcopy Create free account
hub / github.com/CodeClash-ai/CodeClash / showMatrix

Function showMatrix

codeclash/viewer/static/js/matrix.js:59–73  ·  view source on GitHub ↗
(matrixName)

Source from the content-addressed store, hash-verified

57}
58
59function 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
75function setupMatrixTooltips() {
76 // No JavaScript tooltips needed - using HTML title attributes

Callers 1

initializeMatrixAnalysisFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected