PATH:
home
/
shotlining
/
public_html
/
wp-content
/
plugins
/
elementor-pro
/
assets
/
js
/*! elementor-pro - v3.23.0 - 05-08-2024 */ "use strict"; (self["webpackChunkelementor_pro"] = self["webpackChunkelementor_pro"] || []).push([["contact-buttons"],{ /***/ "../modules/floating-buttons/assets/js/frontend/handlers/contact-buttons.js": /*!**********************************************************************************!*\ !*** ../modules/floating-buttons/assets/js/frontend/handlers/contact-buttons.js ***! \**********************************************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _defineProperty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/defineProperty */ "../node_modules/@babel/runtime/helpers/defineProperty.js")); var _base = _interopRequireDefault(__webpack_require__(/*! elementor-frontend/handlers/base */ "../../elementor/assets/dev/js/frontend/handlers/base.js")); class ContactButtonsHandler extends _base.default { constructor() { super(...arguments); (0, _defineProperty2.default)(this, "clicks", []); } getDefaultSettings() { return { selectors: { main: '.e-contact-buttons', content: '.e-contact-buttons__content', contentWrapper: '.e-contact-buttons__content-wrapper', chatButton: '.e-contact-buttons__chat-button', closeButton: '.e-contact-buttons__close-button', messageBubbleTime: '.e-contact-buttons__message-bubble-time', contactButtonsVar4: '.e-contact-buttons__contact-icon-link', contactButtonsVar5: '.e-contact-buttons__chat-button', contactButtonsVar6: '.e-contact-buttons-var-6', contactButtonsVar8: '.e-contact-buttons-var-8', elementorWrapper: '[data-elementor-type="floating-buttons"]', contactButtonCore: '.e-contact-buttons__send-button' }, constants: { entranceAnimation: 'style_chat_box_entrance_animation', exitAnimation: 'style_chat_box_exit_animation', chatButtonAnimation: 'style_chat_button_animation', animated: 'animated', animatedWrapper: 'animated-wrapper', visible: 'visible', reverse: 'reverse', hidden: 'hidden', hasAnimations: 'has-animations', hasEntranceAnimation: 'has-entrance-animation', none: 'none' } }; } getDefaultElements() { const selectors = this.getSettings('selectors'); return { main: this.$element[0].querySelector(selectors.main), content: this.$element[0].querySelector(selectors.content), contentWrapper: this.$element[0].querySelector(selectors.contentWrapper), chatButton: this.$element[0].querySelector(selectors.chatButton), closeButton: this.$element[0].querySelector(selectors.closeButton), messageBubbleTime: this.$element[0].querySelector(selectors.messageBubbleTime), contactButtonsVar5: this.$element[0].querySelector(selectors.contactButtonsVar5), contactButtonsVar6: this.$element[0].querySelector(selectors.contactButtonsVar6) }; } getResponsiveSetting(controlName) { const currentDevice = elementorFrontend.getCurrentDeviceMode(); return elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), controlName, '', currentDevice); } bindEvents() { if (this.elements.closeButton) { this.elements.closeButton.addEventListener('click', this.closeChatBox.bind(this)); } if (this.elements.chatButton) { this.elements.chatButton.addEventListener('click', this.onChatButtonClick.bind(this)); this.elements.chatButton.addEventListener('animationend', this.removeChatButtonAnimationClasses.bind(this)); } if (this.elements.content) { this.elements.content.addEventListener('animationend', this.removeAnimationClasses.bind(this)); } if (this.elements.contentWrapper) { this.elements.contentWrapper.addEventListener('click', this.onChatButtonTrackClick.bind(this)); window.addEventListener('keyup', this.onDocumentKeyup.bind(this)); } if (this.elements.contactButtonsVar5) { this.elements.contactButtonsVar5.addEventListener('click', this.onChatButtonTrackClick.bind(this)); } if (this.elements.contactButtonsVar6) { this.elements.contactButtonsVar6.addEventListener('click', this.onChatButtonTrackClick.bind(this)); } window.addEventListener('beforeunload', () => { if (this.clicks.length > 0) { this.sendClicks(); } }); } contentWrapperIsHidden(hide) { if (!this.elements.contentWrapper) { return false; } const { hidden } = this.getSettings('constants'); // Set current state if (true === hide) { this.elements.contentWrapper.classList.add(hidden); this.elements.contentWrapper.setAttribute('aria-hidden', 'true'); return; } if (false === hide) { this.elements.contentWrapper.classList.remove(hidden); this.elements.contentWrapper.setAttribute('aria-hidden', 'false'); return; } // Get current state return this.elements.contentWrapper.classList.contains(hidden); } onDocumentKeyup(event) { // Bail if not ESC key if (event.keyCode !== 27 || !this.elements.main) { return; } /* eslint-disable @wordpress/no-global-active-element */ if (!this.contentWrapperIsHidden() && this.elements.main.contains(document.activeElement)) { this.closeChatBox(); } /* eslint-enable @wordpress/no-global-active-element */ } onChatButtonTrackClick(event) { const targetElement = event.target || event.srcElement; const selectors = this.getSettings('selectors'); const buttonSelectors = [selectors.contactButtonsVar4, selectors.contactButtonsVar6, selectors.contactButtonCore]; for (const selector of buttonSelectors) { if (targetElement.matches(selector) || targetElement.closest(selector)) { this.getDocumentIdAndTrack(targetElement, selectors); } } if ((targetElement.matches(selectors.contactButtonsVar5) || targetElement.closest(selectors.contactButtonsVar5)) && targetElement.closest('.e-contact-buttons-var-5')) { this.getDocumentIdAndTrack(targetElement, selectors); } } getDocumentIdAndTrack(targetElement, selectors) { let documentId = targetElement.closest(selectors.main).dataset.documentId; if (!documentId) { documentId = targetElement.closest(selectors.elementorWrapper).dataset.elementorId; } this.trackClick(documentId); } trackClick(documentId) { if (!documentId) { return; } this.clicks.push(documentId); if (this.clicks.length >= 10) { this.sendClicks(); } } sendClicks() { const formData = new FormData(); formData.append('action', 'elementor_send_clicks'); formData.append('_nonce', elementorFrontendConfig?.nonces?.floatingButtonsClickTracking); this.clicks.forEach(documentId => formData.append('clicks[]', documentId)); fetch(elementorFrontendConfig?.urls?.ajaxurl, { method: 'POST', body: formData }).then(() => { this.clicks = []; }); } removeAnimationClasses() { if (!this.elements.content) { return; } const { reverse, entranceAnimation, exitAnimation, animated, visible } = this.getSettings('constants'); const isExitAnimation = this.elements.content.classList.contains(reverse), openAnimationClass = this.getResponsiveSetting(entranceAnimation), exitAnimationClass = this.getResponsiveSetting(exitAnimation); if (isExitAnimation) { this.elements.content.classList.remove(animated); this.elements.content.classList.remove(reverse); if (exitAnimationClass) { this.elements.content.classList.remove(exitAnimationClass); } this.elements.content.classList.remove(visible); } else { this.elements.content.classList.remove(animated); if (openAnimationClass) { this.elements.content.classList.remove(openAnimationClass); } this.elements.content.classList.add(visible); } } chatBoxEntranceAnimation() { const { entranceAnimation, animated, animatedWrapper, none } = this.getSettings('constants'); const entranceAnimationControl = this.getResponsiveSetting(entranceAnimation); if (!entranceAnimationControl || none === entranceAnimationControl) { return; } if (this.elements.content) { this.elements.content.classList.add(animated); this.elements.content.classList.add(entranceAnimationControl); } if (this.elements.contentWrapper) { this.elements.contentWrapper.classList.remove(animatedWrapper); } } chatBoxExitAnimation() { const { reverse, exitAnimation, animated, animatedWrapper, none } = this.getSettings('constants'); const exitAnimationControl = this.getResponsiveSetting(exitAnimation); if (!exitAnimationControl || none === exitAnimationControl) { return; } if (this.elements.content) { this.elements.content.classList.add(animated); this.elements.content.classList.add(reverse); this.elements.content.classList.add(exitAnimationControl); } if (this.elements.contentWrapper) { this.elements.contentWrapper.classList.add(animatedWrapper); } } openChatBox() { const { hasAnimations, visible } = this.getSettings('constants'); if (this.elements.main && this.elements.main.classList.contains(hasAnimations)) { this.chatBoxEntranceAnimation(); } else if (this.elements.content) { this.elements.content.classList.add(visible); } if (this.elements.contentWrapper) { this.contentWrapperIsHidden(false); if (!elementorFrontend.isEditMode()) { this.elements.contentWrapper.setAttribute('tabindex', '0'); this.elements.contentWrapper.focus({ focusVisible: true }); } } if (this.elements.chatButton) { this.elements.chatButton.setAttribute('aria-expanded', 'true'); } if (this.elements.closeButton) { this.elements.closeButton.setAttribute('aria-expanded', 'true'); } } closeChatBox() { const { hasAnimations, visible } = this.getSettings('constants'); if (this.elements.main && this.elements.main.classList.contains(hasAnimations)) { this.chatBoxExitAnimation(); } else if (this.elements.content) { this.elements.content.classList.remove(visible); } if (this.elements.contentWrapper) { this.contentWrapperIsHidden(true); } if (this.elements.chatButton) { this.elements.chatButton.setAttribute('aria-expanded', 'false'); this.elements.chatButton.focus({ focusVisible: true }); } if (this.elements.closeButton) { this.elements.closeButton.setAttribute('aria-expanded', 'false'); } } onChatButtonClick() { if (this.elements.contentWrapper && this.contentWrapperIsHidden()) { this.openChatBox(); } else { this.closeChatBox(); } } initMessageBubbleTime() { if (!this.elements.messageBubbleTime) { return; } const messageBubbleTimeFormat = this.elements.messageBubbleTime.dataset.timeFormat; const is12hFormat = '12h' === messageBubbleTimeFormat; const time = new Intl.DateTimeFormat('default', { hour12: is12hFormat, hour: 'numeric', minute: 'numeric' }).format(new Date()); this.elements.messageBubbleTime.innerHTML = time; } removeChatButtonAnimationClasses() { if (!this.elements.chatButton) { return; } const { chatButtonAnimation, visible } = this.getSettings('constants'); this.elements.chatButton.classList.remove(chatButtonAnimation); this.elements.chatButton.classList.add(visible); } initChatButtonEntranceAnimation() { const { none, chatButtonAnimation } = this.getSettings('constants'); const entranceAnimationControl = this.getResponsiveSetting(chatButtonAnimation); if (!entranceAnimationControl || none === entranceAnimationControl) { return; } this.elements.chatButton.classList.add(entranceAnimationControl); } initDefaultState() { // Manage accessibility if (this.elements.contentWrapper) { const isHidden = this.contentWrapperIsHidden(); if (this.elements.chatButton) { this.elements.chatButton.setAttribute('aria-expanded', !isHidden); } if (this.elements.closeButton) { this.elements.closeButton.setAttribute('aria-expanded', !isHidden); } } if (elementorFrontend.isEditMode() && 'floating-buttons' === elementor?.config?.document?.type) { this.openChatBox(); } } onInit() { const { hasEntranceAnimation } = this.getSettings('constants'); super.onInit(...arguments); if (this.elements.messageBubbleTime) { this.initMessageBubbleTime(); } this.initDefaultState(); if (this.elements.chatButton) { if (this.elements.chatButton.classList.contains(hasEntranceAnimation)) { this.initChatButtonEntranceAnimation(); } } } } exports["default"] = ContactButtonsHandler; /***/ }), /***/ "../../elementor/assets/dev/js/frontend/handlers/base.js": /*!***************************************************************!*\ !*** ../../elementor/assets/dev/js/frontend/handlers/base.js ***! \***************************************************************/ /***/ ((module) => { module.exports = elementorModules.ViewModule.extend({ $element: null, editorListeners: null, onElementChange: null, onEditSettingsChange: null, onPageSettingsChange: null, isEdit: null, __construct(settings) { if (!this.isActive(settings)) { return; } this.$element = settings.$element; this.isEdit = this.$element.hasClass('elementor-element-edit-mode'); if (this.isEdit) { this.addEditorListeners(); } }, isActive() { return true; }, isElementInTheCurrentDocument() { if (!elementorFrontend.isEditMode()) { return false; } return elementor.documents.currentDocument.id.toString() === this.$element[0].closest('.elementor').dataset.elementorId; }, findElement(selector) { var $mainElement = this.$element; return $mainElement.find(selector).filter(function () { // Start `closest` from parent since self can be `.elementor-element`. return jQuery(this).parent().closest('.elementor-element').is($mainElement); }); }, getUniqueHandlerID(cid, $element) { if (!cid) { cid = this.getModelCID(); } if (!$element) { $element = this.$element; } return cid + $element.attr('data-element_type') + this.getConstructorID(); }, initEditorListeners() { var self = this; self.editorListeners = [{ event: 'element:destroy', to: elementor.channels.data, callback(removedModel) { if (removedModel.cid !== self.getModelCID()) { return; } self.onDestroy(); } }]; if (self.onElementChange) { const elementType = self.getWidgetType() || self.getElementType(); let eventName = 'change'; if ('global' !== elementType) { eventName += ':' + elementType; } self.editorListeners.push({ event: eventName, to: elementor.channels.editor, callback(controlView, elementView) { var elementViewHandlerID = self.getUniqueHandlerID(elementView.model.cid, elementView.$el); if (elementViewHandlerID !== self.getUniqueHandlerID()) { return; } self.onElementChange(controlView.model.get('name'), controlView, elementView); } }); } if (self.onEditSettingsChange) { self.editorListeners.push({ event: 'change:editSettings', to: elementor.channels.editor, callback(changedModel, view) { if (view.model.cid !== self.getModelCID()) { return; } const propName = Object.keys(changedModel.changed)[0]; self.onEditSettingsChange(propName, changedModel.changed[propName]); } }); } ['page'].forEach(function (settingsType) { var listenerMethodName = 'on' + settingsType[0].toUpperCase() + settingsType.slice(1) + 'SettingsChange'; if (self[listenerMethodName]) { self.editorListeners.push({ event: 'change', to: elementor.settings[settingsType].model, callback(model) { self[listenerMethodName](model.changed); } }); } }); }, getEditorListeners() { if (!this.editorListeners) { this.initEditorListeners(); } return this.editorListeners; }, addEditorListeners() { var uniqueHandlerID = this.getUniqueHandlerID(); this.getEditorListeners().forEach(function (listener) { elementorFrontend.addListenerOnce(uniqueHandlerID, listener.event, listener.callback, listener.to); }); }, removeEditorListeners() { var uniqueHandlerID = this.getUniqueHandlerID(); this.getEditorListeners().forEach(function (listener) { elementorFrontend.removeListeners(uniqueHandlerID, listener.event, null, listener.to); }); }, getElementType() { return this.$element.data('element_type'); }, getWidgetType() { const widgetType = this.$element.data('widget_type'); if (!widgetType) { return; } return widgetType.split('.')[0]; }, getID() { return this.$element.data('id'); }, getModelCID() { return this.$element.data('model-cid'); }, getElementSettings(setting) { let elementSettings = {}; const modelCID = this.getModelCID(); if (this.isEdit && modelCID) { const settings = elementorFrontend.config.elements.data[modelCID], attributes = settings.attributes; let type = attributes.widgetType || attributes.elType; if (attributes.isInner) { type = 'inner-' + type; } let settingsKeys = elementorFrontend.config.elements.keys[type]; if (!settingsKeys) { settingsKeys = elementorFrontend.config.elements.keys[type] = []; jQuery.each(settings.controls, (name, control) => { if (control.frontend_available || control.editor_available) { settingsKeys.push(name); } }); } jQuery.each(settings.getActiveControls(), function (controlKey) { if (-1 !== settingsKeys.indexOf(controlKey)) { let value = attributes[controlKey]; if (value.toJSON) { value = value.toJSON(); } elementSettings[controlKey] = value; } }); } else { elementSettings = this.$element.data('settings') || {}; } return this.getItems(elementSettings, setting); }, getEditSettings(setting) { var attributes = {}; if (this.isEdit) { attributes = elementorFrontend.config.elements.editSettings[this.getModelCID()].attributes; } return this.getItems(attributes, setting); }, getCurrentDeviceSetting(settingKey) { return elementorFrontend.getCurrentDeviceSetting(this.getElementSettings(), settingKey); }, onInit() { if (this.isActive(this.getSettings())) { elementorModules.ViewModule.prototype.onInit.apply(this, arguments); } }, onDestroy() { if (this.isEdit) { this.removeEditorListeners(); } if (this.unbindEvents) { this.unbindEvents(); } } }); /***/ }) }]); //# sourceMappingURL=contact-buttons.5f4d4ece4d991cd56a20.bundle.js.map
[+]
..
[-] display-conditions.js
[edit]
[-] jszip.vendor.a3c65615c1de5560962d.bundle.js
[edit]
[-] frontend.min.js
[edit]
[-] hotspot.70886883c622dd8d5eb2.bundle.js
[edit]
[-] nested-carousel-editor.2fdc278ce6bc9f6ec2e0.bundle.js
[edit]
[-] off-canvas-editor.f188d072365885d9b0dd.bundle.min.js
[edit]
[-] woocommerce-purchase-summary.46445ab1120a8c28c05c.bundle.min.js
[edit]
[-] webpack-pro.runtime.min.js
[edit]
[-] search-form.4beabae7f0e0a3129ef7.bundle.js
[edit]
[-] archive-posts.0aae8c3bd7d196797b6c.bundle.js
[edit]
[-] countdown.be941c879efa861dbbfa.bundle.min.js
[edit]
[-] animated-headline.3efc6517c2a055f6c242.bundle.min.js
[edit]
[-] social.2d2e44e8608690943f29.bundle.min.js
[edit]
[-] woocommerce-my-account.6509f179e93231fa2b6a.bundle.js
[edit]
[-] social.deeefd0e3641200f8239.bundle.js
[edit]
[-] video-playlist.74fca1f2470fa6474595.bundle.min.js
[edit]
[-] menu-title-keyboard-handler.8482fb61223805f5ee8f.bundle.min.js
[edit]
[-] form-submission-admin.js
[edit]
[-] frontend.js
[edit]
[-] form-submission-admin.min.js
[edit]
[-] mega-menu.2e0078a6bbdc8abdf4af.bundle.js
[edit]
[-] woocommerce-notices.aaa7a3d06f24f7ea6951.bundle.min.js
[edit]
[-] ajax-pagination.a8dae0f5699fe9733e7d.bundle.min.js
[edit]
[-] code-highlight.28a979661569ddbbf60d.bundle.min.js
[edit]
[-] progress-tracker.3ec316715116e9087057.bundle.js
[edit]
[-] lottie.565b778d23c04461c4ea.bundle.min.js
[edit]
[-] archive-posts.d30c917134774f65dd6d.bundle.min.js
[edit]
[-] search.5154a7b515b28ee3dfe6.bundle.js
[edit]
[-] loop-filter-editor.d1bae86a5ed21c0e9981.bundle.js
[edit]
[-] webpack-pro.runtime.js
[edit]
[-] page-transitions.js
[edit]
[-] gutenberg-woocommerce-notice.js
[edit]
[-] admin.min.js
[edit]
[-] contact-buttons-var-10.5ceb4ecd2152a5f8b96e.bundle.js
[edit]
[-] posts.5d2d70b1d6918b6d8205.bundle.js
[edit]
[-] carousel.9b02b45d7826c1c48f33.bundle.min.js
[edit]
[-] loop.27d8ba43536f8b76ca41.bundle.js
[edit]
[-] woocommerce-cart.fc30c6cb753d4098eff5.bundle.min.js
[edit]
[-] editor.min.js
[edit]
[-] progress-tracker.53951a08af7543da98e6.bundle.min.js
[edit]
[-] woocommerce-my-account.3ee10d01e625dad87f73.bundle.min.js
[edit]
[-] ef74929d267aeb27fc93.bundle.js
[edit]
[-] off-canvas.38087f3bf0da88e5e2e9.bundle.min.js
[edit]
[-] mega-menu-editor.88e3947c99f378d080db.bundle.js
[edit]
[-] contact-buttons.09c69d0d12aa67f9133e.bundle.min.js
[edit]
[-] page-transitions.min.js
[edit]
[-] gutenberg-woocommerce-notice.min.js
[edit]
[-] media-carousel.d8417210e0b731dd32b8.bundle.js
[edit]
[-] carousel.998a291abf70435fd698.bundle.js
[edit]
[-] product-add-to-cart.e099bc90899376d00959.bundle.js
[edit]
[-] editor.min.js.LICENSE.txt
[edit]
[-] mega-menu-editor.06a345ed56efe063f971.bundle.min.js
[edit]
[-] stripe-button.2acbca466dfeb9585680.bundle.min.js
[edit]
[-] woocommerce-checkout-page.b18af78282979b6f74e4.bundle.min.js
[edit]
[-] paypal-button.3d0d5af7df85963df32c.bundle.min.js
[edit]
[-] screenshot.js
[edit]
[-] taxonomy-filter.9d41aac2f76c01cfdb42.bundle.js
[edit]
[-] mega-menu-stretch-content.4648b25d00c1f94cec4e.bundle.js
[edit]
[-] off-canvas-editor.537e5e064206eea190cc.bundle.js
[edit]
[-] load-more.ad89e46f2f6bfd9c27e8.bundle.js
[edit]
[-] 60745ddf42fde6647dbc.bundle.min.js
[edit]
[-] loop-carousel.4e8fd6593adbba21698e.bundle.min.js
[edit]
[-] product-add-to-cart.023d7d31fbf96c3dbdfc.bundle.min.js
[edit]
[-] off-canvas.26fe37796a9397d32c9f.bundle.js
[edit]
[-] stripe-button.b00915f9aec396f7b070.bundle.js
[edit]
[-] table-of-contents.d228157a74585ba6b08c.bundle.js
[edit]
[-] nested-carousel.3ff3a0e309cbbd122254.bundle.min.js
[edit]
[-] loop.4f538ab2476dd2d124e6.bundle.min.js
[edit]
[-] paypal-button.3028ea98fc2e17fdfe8f.bundle.js
[edit]
[-] form.c4bc7eaa69583834a7d5.bundle.min.js
[edit]
[-] preview.min.js
[edit]
[-] gallery.8ca9a354ce039d1ba641.bundle.min.js
[edit]
[-] gallery.805130d33e18cb04635f.bundle.js
[edit]
[-] share-buttons.58e0fcb000aa02df3f24.bundle.js
[edit]
[-] video-playlist.964a12bbea2078517f07.bundle.js
[edit]
[-] load-more.bc9573b5d1f73abd80b9.bundle.min.js
[edit]
[-] admin.js
[edit]
[-] taxonomy-filter.b42e9c10a9d0abc3454e.bundle.min.js
[edit]
[-] share-buttons.08f4daf4a4285a8632b8.bundle.min.js
[edit]
[-] table-of-contents.8fd1a0cc520a3fc67bd8.bundle.min.js
[edit]
[-] slides.fb6b9afd278bb9c5e75b.bundle.min.js
[edit]
[-] slides.3b185c687f9167dfae0c.bundle.js
[edit]
[-] nav-menu.e65811186e94a386ba7b.bundle.min.js
[edit]
[-] hotspot.6ab1751404c381bfe390.bundle.min.js
[edit]
[-] contact-buttons.5f4d4ece4d991cd56a20.bundle.js
[edit]
[-] contact-buttons-var-10.b255e00e3feea456660f.bundle.min.js
[edit]
[-] qunit-tests.min.js
[edit]
[-] lottie.a00fda0bbf10f9b99eae.bundle.js
[edit]
[-] popup.085c1727e36940b18f29.bundle.min.js
[edit]
[-] display-conditions.min.js
[edit]
[-] jszip.vendor.99a5b769619f50a6cb60.bundle.min.js
[edit]
[-] custom-code.min.js
[edit]
[-] search.d0787a5c582ce238adf0.bundle.min.js
[edit]
[-] custom-code.js
[edit]
[-] woocommerce-cart.73c6990b0b1a1ea18220.bundle.js
[edit]
[-] woocommerce-menu-cart.faa7b80e9ba9e5072070.bundle.min.js
[edit]
[-] nav-menu.3302c748e084579995fb.bundle.js
[edit]
[-] popup.1f90f6cfd0d44ef28772.bundle.js
[edit]
[-] nested-carousel.c8ad1035e988a2ae42b1.bundle.js
[edit]
[-] ajax-pagination.bc400e6cb24a14a2ea97.bundle.js
[edit]
[-] form.97ef0fd396471477cc8e.bundle.js
[edit]
[-] nested-carousel-editor.6337dab68af203be7c04.bundle.min.js
[edit]
[-] portfolio.b5c5e89624dc6b81a11a.bundle.min.js
[edit]
[+]
notes
[-] portfolio.9a52c1f0953359d74119.bundle.js
[edit]
[-] elements-handlers.min.js
[edit]
[-] countdown.60cf02eaf22d71d83f3d.bundle.js
[edit]
[-] elements-handlers.js
[edit]
[-] app.min.js
[edit]
[-] woocommerce-notices.d8c0850de1984ac89f33.bundle.js
[edit]
[-] menu-title-keyboard-handler.b34510de747c3b311e45.bundle.js
[edit]
[-] animated-headline.e4c2ed3934d0df18c40a.bundle.js
[edit]
[-] jszip.vendor.99a5b769619f50a6cb60.bundle.min.js.LICENSE.txt
[edit]
[-] woocommerce-checkout-page.9b1242f2568f94bb8d5c.bundle.js
[edit]
[-] editor.js
[edit]
[-] code-highlight.8b676d9a001f56fb77fa.bundle.js
[edit]
[-] woocommerce-purchase-summary.8d56a92f38ab4fc4575f.bundle.js
[edit]
[-] woocommerce-menu-cart.010ec7298aee1fcdc2ea.bundle.js
[edit]
[-] 98217e0c00e1f53421ef.bundle.js
[edit]
[-] posts.caaf3e27e57db8207afc.bundle.min.js
[edit]
[-] loop-carousel.827a11bd7f1b0343de42.bundle.js
[edit]
[-] app.js
[edit]
[-] screenshot.min.js
[edit]
[-] mega-menu-stretch-content.60ca9e1e97c52ac3bf8c.bundle.min.js
[edit]
[-] preview.js
[edit]
[-] search-form.a25a87283d08dad12f18.bundle.min.js
[edit]
[-] 60745ddf42fde6647dbc.bundle.min.js.LICENSE.txt
[edit]
[-] cf897f631f64e6c79d99.bundle.min.js
[edit]
[-] mega-menu.43866105e5e8e1a3f38d.bundle.min.js
[edit]
[-] loop-filter-editor.21982d6e76a4fba12cd5.bundle.min.js
[edit]
[-] qunit-tests.js
[edit]
[-] media-carousel.aca2224ef13e6f999011.bundle.min.js
[edit]
[+]
packages