diff --git a/site/public/order/fcc-carrier-registration/index.html b/site/public/order/fcc-carrier-registration/index.html index 3f1e250..8d90d63 100644 --- a/site/public/order/fcc-carrier-registration/index.html +++ b/site/public/order/fcc-carrier-registration/index.html @@ -134,12 +134,19 @@ select:focus,input:focus{outline:none;border-color:#1e3a5f;box-shadow:0 0 0 2px - + @@ -440,12 +447,14 @@ select:focus,input:focus{outline:none;border-color:#1e3a5f;box-shadow:0 0 0 2px }); }); - // ── Q5: Operating states ── + // ── Q5: Customer geography ── document.querySelectorAll('[data-states]').forEach(function(btn) { btn.addEventListener('click', function() { document.querySelectorAll('[data-states]').forEach(function(b) { b.classList.remove('selected'); }); btn.classList.add('selected'); wizard.operatingStates = btn.dataset.states; + // Show PUC info for multi-state or nationwide + document.getElementById('state-puc-explain').classList.toggle('hidden', btn.dataset.states === '1'); document.getElementById('q6').classList.remove('hidden'); }); });