Skip to content
jQuery(window).on('elementor/frontend/init', function () {
elementorFrontend.hooks.addAction(
'frontend/element_ready/section.default',
function ($scope) {
const images = $scope.find('.as-slider-background img');
if (!images.length) return;
images.removeClass('prev currentBackward currentForward');
images.eq(0).addClass('currentForward');
}
);
});