Files
strom-roku-2023.krk-litvino…/static/scripts/main.js
2023-05-18 15:33:26 +02:00

17 lines
460 B
JavaScript

$(document).ready(function() {
$("[data-lightbox]").fancybox({
loop: false,
caption: function(instance, item) {
const img = this.querySelector('img');
let caption = img.getAttribute('alt') ?? '';
if (item.type === 'image') {
const download = this.getAttribute('data-original') ?? item.src;
caption = (caption.length ? caption + '<br />' : '') + '<a href="' + download + '">Stáhnout obrázek</a>' ;
}
return caption;
}
});
});