15 lines
376 B
Plaintext
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);
|