libreccm-legacy/ccm-core/web/themes/foundry/scripts/apply-fancybox.js

14 lines
320 B
JavaScript

$(document).ready(function() {
$("a.imageZoom").fancybox({'type': 'image'});
$("a.imageGallery").fancybox({
type: 'image',
helpers: {
title: {
type: 'inside',
},
buttons: {
position: 'bottom',
}
}
});
});