(id, value)
| 358 | |
| 359 | // Helper to safely set an input element's value |
| 360 | function setInputValue(id, value) { |
| 361 | const el = document.getElementById(id); |
| 362 | if (el) el.value = value; |
| 363 | } |
| 364 | |
| 365 | // Show video settings popup |
| 366 | function showVideoSettingsPopup() { |
no outgoing calls
no test coverage detected