16 lines
397 B
JavaScript
16 lines
397 B
JavaScript
jQuery(document).ready(function($)
|
|
{
|
|
$('[data-fancybox="divers"]').fancybox(
|
|
{
|
|
infobar: false,
|
|
toolbar: true,
|
|
smallBtn: false,
|
|
buttons: ["arrowLeft", "arrowRight", "close"],
|
|
arrows: false,
|
|
transitionEffect: "fade",
|
|
baseClass: 'fancybox-custom-layout',
|
|
mobile: {
|
|
preventCaptionOverlap: true,
|
|
},
|
|
});
|
|
}); |