fulldecent / system-bus-radio

Transmits AM radio on computers without radio transmitting hardware.
https://fulldecent.github.io/system-bus-radio/
MIT License
6.19k stars 386 forks source link

Fixed bug in docs/airgap.js that prevented it from reading changes to the tune input #65

Closed egnima closed 8 months ago

egnima commented 8 months ago

A textarea's value attribute gives its current, user-provided contents, while innerHTML sometimes gives its default contents. value should always be used to get the latest contents. See the specs: https://html.spec.whatwg.org/multipage/form-elements.html#dom-textarea-value

fulldecent commented 8 months ago

Great thank you. Merged!