| 1 |
(function() { |
| 2 |
var dollars = document.getElementById('pwyw-min-dollars'); |
| 3 |
var cents = document.getElementById('pwyw-min-cents'); |
| 4 |
if (cents.value) dollars.value = (parseInt(cents.value, 10) / 100).toFixed(2); |
| 5 |
dollars.addEventListener('input', function() { |
| 6 |
cents.value = Math.round(parseFloat(this.value || 0) * 100); |
| 7 |
}); |
| 8 |
})(); |
| 9 |
|