Spaces:
Running
Running
| // Gallery functionality | |
| document.addEventListener('DOMContentLoaded', () => { | |
| console.log('PixelPond Gallery loaded'); | |
| // Example of adding more images dynamically | |
| const loadMoreBtn = document.querySelector('button'); | |
| if (loadMoreBtn) { | |
| loadMoreBtn.addEventListener('click', () => { | |
| alert('More images would be loaded here in a real implementation!'); | |
| }); | |
| } | |
| }); |