Files
zahradka/static/scripts/main.js
Jan Tojnar 6246856fda
All checks were successful
deploy-pages Deployed in 22 seconds
Initial commit
2023-02-23 05:30:17 +01: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;
}
});
});