Spaces:
Running
Running
File size: 720 Bytes
e06118d f419ef6 e06118d f419ef6 e06118d 7ced29c f419ef6 7ced29c f419ef6 7ced29c e06118d f419ef6 7ced29c e06118d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
// scripts/ui.js
export function initUI() {
alert("Step 3: initUI() is running..."); // <-- DEBUG ALERT
const productionButton = document.getElementById('production-button');
const productionPanel = document.getElementById('production-panel');
if (productionButton && productionPanel) {
alert("Step 4: Found video button and panel. Adding click listener..."); // <-- DEBUG ALERT
productionButton.addEventListener('click', () => {
alert("Step 5: Video button CLICKED!"); // <-- DEBUG ALERT
productionPanel.classList.toggle('open');
});
} else {
alert("ERROR: Could NOT find the video button or panel in the HTML!"); // <-- DEBUG ALERT
}
} |