File size: 420 Bytes
2e3fba6
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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!');
        });
    });
});