PATH:
home
/
lab2454c
/
invest.westernclear.com
/
wp-content
/
plugins
/
elementor-pro
/
assets
/
js
/*! elementor-pro - v3.4.2 - 12-10-2021 */ (self["webpackChunkelementor_pro"] = self["webpackChunkelementor_pro"] || []).push([["gallery"],{ /***/ "../modules/gallery/assets/js/frontend/handler.js": /*!********************************************************!*\ !*** ../modules/gallery/assets/js/frontend/handler.js ***! \********************************************************/ /***/ ((__unused_webpack_module, exports) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.default = void 0; class galleryHandler extends elementorModules.frontend.handlers.Base { getDefaultSettings() { return { selectors: { container: '.elementor-gallery__container', galleryTitles: '.elementor-gallery-title', galleryImages: '.e-gallery-image', galleryItemOverlay: '.elementor-gallery-item__overlay', galleryItemContent: '.elementor-gallery-item__content' }, classes: { activeTitle: 'elementor-item-active' } }; } getDefaultElements() { const { selectors } = this.getSettings(), elements = { $container: this.$element.find(selectors.container), $titles: this.$element.find(selectors.galleryTitles) }; elements.$items = elements.$container.children(); elements.$images = elements.$items.children(selectors.galleryImages); elements.$itemsOverlay = elements.$items.children(selectors.galleryItemOverlay); elements.$itemsContent = elements.$items.children(selectors.galleryItemContent); elements.$itemsContentElements = elements.$itemsContent.children(); return elements; } getGallerySettings() { const settings = this.getElementSettings(), activeBreakpoints = elementorFrontend.config.responsive.activeBreakpoints, activeBreakpointsKeys = Object.keys(activeBreakpoints), breakPointSettings = {}, desktopIdealRowHeight = elementorFrontend.getDeviceSetting('desktop', settings, 'ideal_row_height'); activeBreakpointsKeys.forEach(breakpoint => { // The Gallery widget currently does not support widescreen. if ('widescreen' !== breakpoint) { const idealRowHeight = elementorFrontend.getDeviceSetting(breakpoint, settings, 'ideal_row_height'); breakPointSettings[activeBreakpoints[breakpoint].value] = { horizontalGap: elementorFrontend.getDeviceSetting(breakpoint, settings, 'gap').size, verticalGap: elementorFrontend.getDeviceSetting(breakpoint, settings, 'gap').size, columns: elementorFrontend.getDeviceSetting(breakpoint, settings, 'columns'), idealRowHeight: idealRowHeight === null || idealRowHeight === void 0 ? void 0 : idealRowHeight.size }; } }); return { type: settings.gallery_layout, idealRowHeight: desktopIdealRowHeight === null || desktopIdealRowHeight === void 0 ? void 0 : desktopIdealRowHeight.size, container: this.elements.$container, columns: settings.columns, aspectRatio: settings.aspect_ratio, lastRow: 'normal', horizontalGap: elementorFrontend.getDeviceSetting('desktop', settings, 'gap').size, verticalGap: elementorFrontend.getDeviceSetting('desktop', settings, 'gap').size, animationDuration: settings.content_animation_duration, breakpoints: breakPointSettings, rtl: elementorFrontend.config.is_rtl, lazyLoad: 'yes' === settings.lazyload }; } initGallery() { this.gallery = new EGallery(this.getGallerySettings()); this.toggleAllAnimationsClasses(); } removeAnimationClasses($element) { $element.removeClass((index, className) => (className.match(/elementor-animated-item-\S+/g) || []).join(' ')); } toggleOverlayHoverAnimation() { this.removeAnimationClasses(this.elements.$itemsOverlay); const hoverAnimation = this.getElementSettings('background_overlay_hover_animation'); if (hoverAnimation) { this.elements.$itemsOverlay.addClass('elementor-animated-item--' + hoverAnimation); } } toggleOverlayContentAnimation() { this.removeAnimationClasses(this.elements.$itemsContentElements); const contentHoverAnimation = this.getElementSettings('content_hover_animation'); if (contentHoverAnimation) { this.elements.$itemsContentElements.addClass('elementor-animated-item--' + contentHoverAnimation); } } toggleOverlayContentSequencedAnimation() { this.elements.$itemsContent.toggleClass('elementor-gallery--sequenced-animation', 'yes' === this.getElementSettings('content_sequenced_animation')); } toggleImageHoverAnimation() { const imageHoverAnimation = this.getElementSettings('image_hover_animation'); this.removeAnimationClasses(this.elements.$images); if (imageHoverAnimation) { this.elements.$images.addClass('elementor-animated-item--' + imageHoverAnimation); } } toggleAllAnimationsClasses() { const elementSettings = this.getElementSettings(), animation = elementSettings.background_overlay_hover_animation || elementSettings.content_hover_animation || elementSettings.image_hover_animation; this.elements.$items.toggleClass('elementor-animated-content', !!animation); this.toggleImageHoverAnimation(); this.toggleOverlayHoverAnimation(); this.toggleOverlayContentAnimation(); this.toggleOverlayContentSequencedAnimation(); } toggleAnimationClasses(settingKey) { if ('content_sequenced_animation' === settingKey) { this.toggleOverlayContentSequencedAnimation(); } if ('background_overlay_hover_animation' === settingKey) { this.toggleOverlayHoverAnimation(); } if ('content_hover_animation' === settingKey) { this.toggleOverlayContentAnimation(); } if ('image_hover_animation' === settingKey) { this.toggleImageHoverAnimation(); } } setGalleryTags(id) { this.gallery.setSettings('tags', 'all' === id ? [] : ['' + id]); } bindEvents() { this.elements.$titles.on('click', this.galleriesNavigationListener.bind(this)); } galleriesNavigationListener(event) { const classes = this.getSettings('classes'), clickedElement = jQuery(event.target); // Make sure no other gallery title has an active class this.elements.$titles.removeClass(classes.activeTitle); // Give the gallery being activated the active class clickedElement.addClass(classes.activeTitle); this.setGalleryTags(clickedElement.data('gallery-index')); const updateLightboxGroup = () => this.setLightboxGalleryIndex(clickedElement.data('gallery-index')); // Wait for the gallery to filter before grouping items for the Light-box setTimeout(updateLightboxGroup, 1000); } setLightboxGalleryIndex(index = 'all') { if ('all' === index) { return this.elements.$items.attr('data-elementor-lightbox-slideshow', 'all_' + this.getID()); } this.elements.$items.not('.e-gallery-item--hidden').attr('data-elementor-lightbox-slideshow', index + '_' + this.getID()); } onInit(...args) { super.onInit(...args); if (elementorFrontend.isEditMode() && 1 <= this.$element.find('.elementor-widget-empty-icon').length) { this.$element.addClass('elementor-widget-empty'); } if (!this.elements.$container.length) { return; } this.initGallery(); this.elements.$titles.first().trigger('click'); } getSettingsDictionary() { if (this.settingsDictionary) { return this.settingsDictionary; } const activeBreakpoints = elementorFrontend.config.responsive.activeBreakpoints, activeBreakpointsKeys = Object.keys(activeBreakpoints); const settingsDictionary = { columns: ['columns'], gap: ['horizontalGap', 'verticalGap'], ideal_row_height: ['idealRowHeight'] }; activeBreakpointsKeys.forEach(breakpoint => { // The Gallery widget currently does not support widescreen. if ('widescreen' === breakpoint) { return; } settingsDictionary['columns_' + breakpoint] = ['breakpoints.' + activeBreakpoints[breakpoint].value + '.columns']; settingsDictionary['gap_' + breakpoint] = ['breakpoints.' + activeBreakpoints[breakpoint].value + '.horizontalGap', 'breakpoints.' + activeBreakpoints[breakpoint].value + '.verticalGap']; settingsDictionary['ideal_row_height_' + breakpoint] = ['breakpoints.' + activeBreakpoints[breakpoint].value + '.idealRowHeight']; }); settingsDictionary.aspect_ratio = ['aspectRatio']; this.settingsDictionary = settingsDictionary; return this.settingsDictionary; } onElementChange(settingKey) { if (-1 !== ['background_overlay_hover_animation', 'content_hover_animation', 'image_hover_animation', 'content_sequenced_animation'].indexOf(settingKey)) { this.toggleAnimationClasses(settingKey); return; } const settingsDictionary = this.getSettingsDictionary(); const settingsToUpdate = settingsDictionary[settingKey]; if (settingsToUpdate) { const gallerySettings = this.getGallerySettings(); settingsToUpdate.forEach(settingToUpdate => { this.gallery.setSettings(settingToUpdate, this.getItems(gallerySettings, settingToUpdate)); }); } } onDestroy() { super.onDestroy(); if (this.gallery) { this.gallery.destroy(); } } } exports.default = galleryHandler; /***/ }) }]); //# sourceMappingURL=gallery.e5ba72e3c57da531df85.bundle.js.map
[-] carousel.6a71b6c6e34400c456a5.bundle.min.js
[edit]
[-] frontend.min.js
[edit]
[-] archive-posts.1d5bae5aa38b8a799cbd.bundle.js
[edit]
[-] elements-handlers.js
[edit]
[-] countdown.6b48da864045c1ea0edd.bundle.js
[edit]
[-] editor.js
[edit]
[-] screenshot.min.js
[edit]
[-] qunit-tests.min.js
[edit]
[-] elements-handlers.min.js
[edit]
[-] form-submission-admin.js
[edit]
[-] frontend.js
[edit]
[-] table-of-contents.f5cd05278297a9d229e1.bundle.min.js
[edit]
[-] paypal-button.21471ef12592606560a0.bundle.min.js
[edit]
[-] form-submission-admin.min.js
[edit]
[-] lottie.dccf7257e6cc366bc6bd.bundle.js
[edit]
[-] portfolio.71a9b9fb42566ae496bd.bundle.js
[edit]
[-] slides.39da68ee3c8123589b2e.bundle.min.js
[edit]
[+]
..
[-] admin.js
[edit]
[-] preview.min.js
[edit]
[-] gallery.e5ba72e3c57da531df85.bundle.js
[edit]
[-] nav-menu.fd64b77e7258ee4c6205.bundle.min.js
[edit]
[-] webpack-pro.runtime.min.js
[edit]
[-] app.min.js
[edit]
[-] share-buttons.d147b71ef798e333e678.bundle.js
[edit]
[-] app.js
[edit]
[-] search-form.e36b4b7c26157bb965fe.bundle.min.js
[edit]
[-] jszip.vendor.8911033537a0c9d6e5f8.bundle.js
[edit]
[-] hotspot.ba3b762edc3da9c7a076.bundle.min.js
[edit]
[-] gallery.6af8f19f91f1b16c3ab6.bundle.min.js
[edit]
[-] table-of-contents.0744140055afdd9bf411.bundle.js
[edit]
[-] archive-posts.c3694683a03701a4b510.bundle.min.js
[edit]
[-] social.b17f5f1767e41333a1dc.bundle.js
[edit]
[-] jszip.vendor.9ec53381c344ee903f3e.bundle.min.js.LICENSE.txt
[edit]
[-] social.787445e9f143597c5be5.bundle.min.js
[edit]
[-] form.23168c11e0d20fa0282b.bundle.js
[edit]
[-] media-carousel.15b78f70034df8ffebad.bundle.min.js
[edit]
[-] editor.min.js
[edit]
[-] animated-headline.37960d9fb9ab8b6e43cd.bundle.min.js
[edit]
[-] custom-code.js
[edit]
[-] posts.2a35b76ad8ea8f612cd7.bundle.min.js
[edit]
[-] paypal-button.a8f3d929735cca75a572.bundle.js
[edit]
[-] carousel.364bbaf018e09f58c819.bundle.js
[edit]
[-] animated-headline.0ccd23763059df7affcc.bundle.js
[edit]
[-] load-more.5f24d086730c704d2314.bundle.min.js
[edit]
[-] preloaded-elements-handlers.js
[edit]
[-] countdown.71f117e09cc4a2aa3dba.bundle.min.js
[edit]
[-] hotspot.66952182f9ae91b6896c.bundle.js
[edit]
[-] webpack-pro.runtime.js
[edit]
[-] popup.7b71aedb401104b93788.bundle.min.js
[edit]
[-] woocommerce-menu-cart.4c85f15cfbc02b4718c9.bundle.min.js
[edit]
[-] screenshot.js
[edit]
[-] search-form.fda69e244861c6890e79.bundle.js
[edit]
[-] slides.6d3f738223ac9b3c9b7a.bundle.js
[edit]
[-] posts.c23c8d29f44afbd62da6.bundle.js
[edit]
[-] code-highlight.dc74fd78a051eda07b3a.bundle.min.js
[edit]
[-] media-carousel.b5cf350f530535d64364.bundle.js
[edit]
[-] preview.js
[edit]
[-] share-buttons.42abb737a0de191a4ee9.bundle.min.js
[edit]
[-] code-highlight.cc6c8eb49e0aff6d419e.bundle.js
[edit]
[-] jszip.vendor.9ec53381c344ee903f3e.bundle.min.js
[edit]
[-] video-playlist.b442680ac5bf7b46b7c3.bundle.min.js
[edit]
[-] popup.5ddbdd46f21fc221d760.bundle.js
[edit]
[-] nav-menu.e248eec66bc3d5587cf6.bundle.js
[edit]
[-] form.0fc25ba6639255b98660.bundle.min.js
[edit]
[-] load-more.ed8a8caa6411cba8ed86.bundle.js
[edit]
[-] admin.min.js
[edit]
[-] preloaded-elements-handlers.min.js
[edit]
[-] woocommerce-menu-cart.cf8829a628c66ec7c688.bundle.js
[edit]
[-] qunit-tests.js
[edit]
[-] custom-code.min.js
[edit]
[-] portfolio.c214590e93207960ce64.bundle.min.js
[edit]
[-] video-playlist.f55c7066f7ec3a866539.bundle.js
[edit]
[-] lottie.b83968ecec2e4fd1b62c.bundle.min.js
[edit]