jQuery(window).on('elementor/frontend/init', function () {
elementorFrontend.hooks.doAction('lightbox:init');
});
jQuery(function($) {
$('body').on('click', 'a[data-elementor-open-lightbox="yes"]', function(e) {
const $link = $(this);
const href = $link.attr('href');
if (href && href.match(/\.(jpg|jpeg|png|webp|gif)$/i)) {
e.preventDefault();
e.stopImmediatePropagation();
setTimeout(() => {}, 10); // задержка для предотвращения перехода
if (elementorFrontend?.modules?.lightbox) {
elementorFrontend.modules.lightbox.openVideoOrImage({
url: href,
title: $link.data('elementor-lightbox-title') || '',
slideshow: $link.data('elementor-lightbox-slideshow') || '',
});
}
}
});
});