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

Function toggleSelectAll

codeclash/viewer/static/js/picker.js:89–96  ·  view source on GitHub ↗
(selectAllCheckbox)

Source from the content-addressed store, hash-verified

87}
88
89function toggleSelectAll(selectAllCheckbox) {
90 // Toggle all game checkboxes
91 const gameCheckboxes = document.querySelectorAll("input[data-path]");
92 gameCheckboxes.forEach((checkbox) => {
93 checkbox.checked = selectAllCheckbox.checked;
94 });
95 updateRunsStatus();
96}
97
98function updateSelectAllCheckbox() {
99 const selectAllCheckbox = document.getElementById("select-all");

Callers

nothing calls this directly

Calls 1

updateRunsStatusFunction · 0.85

Tested by

no test coverage detected