Spaces:
Running
Running
File size: 430 Bytes
b27cb15 693b035 b27cb15 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
// scripts/video.js
const getElement = (id) => document.getElementById(id);
export function initVideo() {
const startBtn = getElement('start-recording');
// The error happened here. Now the button should be found.
if (startBtn) {
startBtn.addEventListener('click', () => {
alert('Start Recording button clicked!');
// The actual video recording logic would go here
});
}
} |