MCPcopy Create free account
hub / github.com/FastLED/FastLED / hideVideoSettingsPopup

Function hideVideoSettingsPopup

src/platforms/wasm/compiler/app.ts:393–403  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

391
392// Hide video settings popup
393function hideVideoSettingsPopup() {
394 const overlay = document.getElementById('video-settings-overlay');
395 const popup = document.getElementById('video-settings-popup');
396 if (!overlay || !popup) return;
397
398 overlay.style.opacity = '0';
399 setTimeout(() => {
400 overlay.style.display = 'none';
401 popup.style.display = 'none';
402 }, 200);
403}
404
405// Update bitrate display labels
406function updateBitrateDisplays() {

Callers 1

app.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected