Files
recipe-importer/kiskegyed-examples/kiskegyed2_files/customLightBox.js.download
T
2026-02-24 18:41:11 +01:00

15 lines
376 B
Plaintext

/* eslint-disable no-undef */
function setLightBoxOptions() {
if (lightbox) {
lightbox.option({
showImageNumberLabel: false,
resizeDuration: 300,
imageFadeDuration: 225,
disableScrolling: true
});
clearInterval(lightBoxInterval);
}
}
let lightBoxInterval = setInterval(setLightBoxOptions, 100);