![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /proc/self/cwd/wp-content/plugins/bdthemes-element-pack/assets/js/modules/ |
/** * Start image accordion widget script */ ; (function ($, elementor) { 'use strict'; $(window).on('elementor/frontend/init', function () { var ModuleHandler = elementorModules.frontend.handlers.Base, ImagePrallaxEffects; ImagePrallaxEffects = ModuleHandler.extend({ bindEvents: function () { this.run(); }, onElementChange: debounce(function (prop) { if (prop.indexOf('element_pack_image_parallax_effects_') !== -1) { this.run(); } }, 400), settings: function (key) { return this.getElementSettings('element_pack_image_parallax_effects_' + key); }, run: function () { var options = this.getDefaultSettings(), element = this.findElement('.elementor-section').get(0), widgetID = this.$element.data('id'), widgetContainer = $('.elementor-element-' + widgetID).find('.elementor-widget-container .elementor-image'); var image = widgetContainer.find('img').attr('src'); // console.log(image); if ('yes' === this.settings('enable')) { var $content = `<div class="bdt-image-parallax-wrapper" bdt-parallax="bgy: -200" style="background-image: url(${image});"></div>`; $(widgetContainer).append($content); } else { return; } } }); elementorFrontend.hooks.addAction('frontend/element_ready/widget', function ($scope) { elementorFrontend.elementsHandler.addHandler(ImagePrallaxEffects, { $element: $scope }); }); }); }(jQuery, window.elementorFrontend)); /** * End image expand widget script */