Current File : /home/kelaby89/cartel.express/wp-content/plugins/trx_addons/addons/image-scroll/image-scroll.js |
/* global jQuery */
(function() {
"use strict";
var $window = jQuery( window ),
$document = jQuery( document ),
$body = jQuery( 'body' );
var $images_scroll;
// Update global values
$document.on( 'action.resize_trx_addons', function() {
images_scroll_detect_width();
} );
// Update links and values after the new post added
$document.on( 'action.got_ajax_response', update_jquery_links );
$document.on( 'action.init_hidden_elements', update_jquery_links );
var first_run = true;
function update_jquery_links(e) {
if ( first_run && e && e.namespace == 'init_hidden_elements' ) {
first_run = false;
return;
}
$images_scroll = jQuery('.trx_addons_image_scroll_direction_left,.trx_addons_image_scroll_direction_right');
images_scroll_detect_width();
images_add_wrappers();
}
update_jquery_links();
function images_scroll_detect_width() {
$images_scroll.each( function() {
var $img = jQuery(this);
$img.get(0).style.setProperty( '--trx-addons-image-scroll-width', $img.width()+'px' );
} );
}
function images_add_wrappers() {
// Wrap img to the <div.elementor-image> and <div.elementor-widget-container> if not wrapped yet
jQuery('.elementor-widget-image[class*="trx_addons_image_scroll_"] img').each( function() {
var $img = jQuery(this);
if ( $img.parent().hasClass( 'elementor-widget-image' ) ) {
$img
.wrap( '<div class="elementor-widget-container" />' )
.wrap( '<div class="elementor-image" />' );
} else if ( $img.parent().hasClass( 'elementor-widget-container' ) ) {
$img
.wrap( '<div class="elementor-image" />' );
}
} );
}
})();