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

Function openBulkActionsModal

codeclash/viewer/static/js/picker.js:149–161  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

147
148// Modal functions
149function openBulkActionsModal() {
150 const selectedCheckboxes = getVisibleCheckedCheckboxes();
151 if (selectedCheckboxes.length === 0) {
152 alert("Please select at least one game folder first.");
153 return;
154 }
155
156 const modal = document.getElementById("bulk-actions-modal");
157 modal.style.display = "flex";
158 // Clear previous content and warning
159 document.getElementById("bulk-actions-textarea").value = "";
160 hideModalWarning();
161}
162
163function closeBulkActionsModal() {
164 const modal = document.getElementById("bulk-actions-modal");

Callers

nothing calls this directly

Calls 2

hideModalWarningFunction · 0.85

Tested by

no test coverage detected