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

Function setVendorRetryButtonState

static/js/payment.js:1310–1315  ·  view source on GitHub ↗
(disabled = false, show = true)

Source from the content-addressed store, hash-verified

1308}
1309
1310function setVendorRetryButtonState(disabled = false, show = true) {
1311 const btn = document.getElementById("vendor-retry-btn");
1312 if (!btn) return;
1313 btn.style.display = show ? "" : "none";
1314 btn.disabled = Boolean(disabled);
1315}
1316
1317function showVendorProgressPanel(show = true) {
1318 const panel = document.getElementById("vendor-progress-panel");

Callers 5

resetVendorProgressPanelFunction · 0.85
updateVendorProgressUiFunction · 0.85
pollVendorProgressFunction · 0.85
startVendorAutoBindFunction · 0.85
updateBindModeSpecificUiFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected