unfdom/unf.js
Martin Matous c4c0be94b0
initial commit
Signed-off-by: Martin Matous <m@matous.dev>
2022-03-31 20:59:21 +02:00

9 lines
358 B
JavaScript

const galleryElements = document.body.querySelectorAll('a.image.lightbox')
for (const elem of galleryElements) {
const thumb = elem.querySelector('img.thumbimage.lazyload')
const src = thumb.getAttribute('data-src')
const needle = '/latest'
const fullImage = src.substring(0, src.indexOf(needle) + needle.length)
elem.setAttribute('href', fullImage)
}