| 1 |
function updatePricingFields() { |
| 2 |
var model = document.querySelector('input[name="pricing_model"]:checked'); |
| 3 |
if (!model) return; |
| 4 |
var val = model.value; |
| 5 |
document.getElementById('pricing-fields-fixed').style.display = val === 'fixed' ? '' : 'none'; |
| 6 |
document.getElementById('pricing-fields-pwyw').style.display = val === 'pwyw' ? '' : 'none'; |
| 7 |
} |
| 8 |
|