Move to next slot on choosing a photo

This commit is contained in:
Balakrishnan Balasubramanian 2024-08-10 11:28:52 -04:00
parent b432769d6f
commit c7e5fb83fc

View File

@ -55,6 +55,17 @@ function main() {
selectedPhotos[0].click()
}
function moveToNextSlot() {
/** @type HTMLCollectionOf<HTMLImageElement> */
const selectedPhotos = selectedPhotosDiv.getElementsByTagName("img")
for (const img of selectedPhotos) {
if(img.src.endsWith("stock.svg")) {
img.click()
return
}
}
}
function loadAlbums() {
(async () => {
try {
@ -115,6 +126,7 @@ function loadPhotos() {
for(const photo of photoImgs) {
photo.onclick = () => {
selectedPhotoImg.src = photo.src
moveToNextSlot()
}
}
} catch(e) {