MCPcopy Create free account
hub / github.com/Tron521/codex-console-temp / handleConcurrencyModeChange

Function handleConcurrencyModeChange

static/js/app.js:667–676  ·  view source on GitHub ↗
(selectEl, hintEl, intervalGroupEl)

Source from the content-addressed store, hash-verified

665
666// 并发模式切换(批量)
667function handleConcurrencyModeChange(selectEl, hintEl, intervalGroupEl) {
668 const mode = selectEl.value;
669 if (mode === 'parallel') {
670 hintEl.textContent = '所有任务分成 N 个并发批次同时执行';
671 intervalGroupEl.style.display = 'none';
672 } else {
673 hintEl.textContent = '同时最多运行 N 个任务,每隔 interval 秒启动新任务';
674 intervalGroupEl.style.display = 'block';
675 }
676}
677
678function initScheduleForm() {
679 if (!elements.scheduleForm) return;

Callers 3

initEventListenersFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected