streamsphere-live / script.js
Prince-7878's picture
https://live.yalla-shoot24.live/
2e3fba6 verified
Raw
History Blame Contribute Delete
420 Bytes
document.addEventListener('DOMContentLoaded', () => {
// Initialize any global functionality here
console.log('StreamSphere Live initialized');
// Example: Add click event for notification buttons
document.querySelectorAll('[data-notify]').forEach(button => {
button.addEventListener('click', () => {
alert('You will be notified when this event starts!');
});
});
});