pixelpond-gallery / script.js
BryKnight's picture
Show image
973b24f verified
raw
history blame contribute delete
415 Bytes
// 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!');
});
}
});