2022-01-12 14:58:42 -08:00

11 lines
333 B
JavaScript

// Activates the image gallery.
// The main task is to attach an event listener to each image in the gallery
// and respond appropriately on click.
function activateGallery() {
let thumbnails = document.querySelectorAll("#gallery-thumbs > ??? > ???");
let mainImage = document.querySelector("#gallery-photo img");
.
.
.
}