PATH:
home
/
lab2454c
/
argowells.com
/
wp-content
/
plugins
/
elementor
/
assets
/
js
/******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ /***/ "../modules/editor-one/assets/js/admin-menu/classes/flyout-interaction-handler.js": /*!****************************************************************************************!*\ !*** ../modules/editor-one/assets/js/admin-menu/classes/flyout-interaction-handler.js ***! \****************************************************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { "use strict"; var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports.FlyoutInteractionHandler = void 0; var _classCallCheck2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "../node_modules/@babel/runtime/helpers/classCallCheck.js")); var _createClass2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/createClass */ "../node_modules/@babel/runtime/helpers/createClass.js")); var FlyoutInteractionHandler = exports.FlyoutInteractionHandler = /*#__PURE__*/function () { function FlyoutInteractionHandler() { (0, _classCallCheck2.default)(this, FlyoutInteractionHandler); this.activeMenu = null; this.activeParent = null; this.closeTimeout = null; this.lastMousePos = null; this.exitPoint = null; this.mouseMoveHandler = null; } return (0, _createClass2.default)(FlyoutInteractionHandler, [{ key: "handle", value: function handle() { this.setupFlyoutMenus(); this.setupMobileSupport(); } }, { key: "setupFlyoutMenus", value: function setupFlyoutMenus() { var _this = this; var menuItems = document.querySelectorAll('#adminmenu li.elementor-has-flyout'); menuItems.forEach(function (parentLi) { var flyoutMenu = parentLi.querySelector('.elementor-submenu-flyout'); if (!flyoutMenu) { return; } _this.attachHoverEvents(parentLi, flyoutMenu); _this.attachFocusEvents(parentLi, flyoutMenu); _this.attachKeyboardEvents(parentLi, flyoutMenu); }); } }, { key: "attachHoverEvents", value: function attachHoverEvents(parentLi, flyoutMenu) { var _this2 = this; parentLi.addEventListener('mouseenter', function () { // If moving to a new parent that is NOT part of the current active tree if (_this2.activeMenu && !_this2.activeMenu.contains(parentLi) && _this2.activeMenu !== flyoutMenu) { // If we are moving to a sibling or unrelated menu, close the current one immediately // UNLESS we are in the safe zone triangle of the parent if (!_this2.isCursorInSafeZone()) { _this2.hideFlyout(_this2.activeMenu); } } _this2.clearCloseTimeout(); _this2.showFlyout(parentLi, flyoutMenu); }); parentLi.addEventListener('mouseleave', function (event) { _this2.exitPoint = { x: event.clientX, y: event.clientY }; _this2.scheduleClose(parentLi, flyoutMenu); }); flyoutMenu.addEventListener('mouseenter', function () { _this2.clearCloseTimeout(); _this2.stopMouseTracking(); }); flyoutMenu.addEventListener('mouseleave', function (event) { _this2.exitPoint = { x: event.clientX, y: event.clientY }; _this2.scheduleClose(parentLi, flyoutMenu); }); } }, { key: "attachFocusEvents", value: function attachFocusEvents(parentLi, flyoutMenu) { var _this3 = this; var parentLink = parentLi.querySelector(':scope > a'); if (parentLink) { parentLink.addEventListener('focus', function () { _this3.showFlyout(parentLi, flyoutMenu); }); } flyoutMenu.addEventListener('focusout', function (event) { if (!parentLi.contains(event.relatedTarget)) { _this3.hideFlyout(flyoutMenu); } }); } }, { key: "attachKeyboardEvents", value: function attachKeyboardEvents(parentLi, flyoutMenu) { var _this4 = this; parentLi.addEventListener('keydown', function (event) { _this4.handleKeyNavigation(event, parentLi, flyoutMenu); }); } }, { key: "showFlyout", value: function showFlyout(parentLi, flyoutMenu) { if (this.activeMenu && this.activeMenu !== flyoutMenu) { this.hideFlyout(this.activeMenu); } this.exitPoint = null; this.positionFlyout(parentLi, flyoutMenu); flyoutMenu.classList.add('elementor-submenu-flyout-visible'); this.activeMenu = flyoutMenu; this.activeParent = parentLi; } }, { key: "hideFlyout", value: function hideFlyout(flyoutMenu) { flyoutMenu.classList.remove('elementor-submenu-flyout-visible'); if (this.activeMenu === flyoutMenu) { this.activeMenu = null; this.activeParent = null; this.exitPoint = null; this.stopMouseTracking(); } } }, { key: "scheduleClose", value: function scheduleClose(parentLi, flyoutMenu) { var _this5 = this; this.clearCloseTimeout(); this.startMouseTracking(parentLi, flyoutMenu); this.closeTimeout = setTimeout(function () { _this5.checkAndClose(flyoutMenu); }, 300); } }, { key: "checkAndClose", value: function checkAndClose(flyoutMenu) { var _this6 = this; if (!this.activeMenu) { return; } if (!this.isCursorInSafeZone()) { this.hideFlyout(flyoutMenu); } else { this.closeTimeout = setTimeout(function () { _this6.checkAndClose(flyoutMenu); }, 300); } } }, { key: "clearCloseTimeout", value: function clearCloseTimeout() { if (this.closeTimeout) { clearTimeout(this.closeTimeout); this.closeTimeout = null; } } }, { key: "startMouseTracking", value: function startMouseTracking() { var _this7 = this; this.stopMouseTracking(); this.mouseMoveHandler = function (event) { _this7.lastMousePos = { x: event.clientX, y: event.clientY }; }; document.addEventListener('mousemove', this.mouseMoveHandler); } }, { key: "stopMouseTracking", value: function stopMouseTracking() { if (this.mouseMoveHandler) { document.removeEventListener('mousemove', this.mouseMoveHandler); this.mouseMoveHandler = null; } this.lastMousePos = null; } }, { key: "isCursorInSafeZone", value: function isCursorInSafeZone() { if (!this.lastMousePos || !this.activeMenu || !this.activeParent) { return false; } var cursor = this.lastMousePos; var parentRect = this.activeParent.getBoundingClientRect(); if (this.isPointInRect(cursor, parentRect)) { return true; } var flyoutRect = this.activeMenu.getBoundingClientRect(); if (this.isPointInRect(cursor, flyoutRect)) { return true; } return this.isPointInTriangle(cursor, parentRect, flyoutRect); } }, { key: "isPointInRect", value: function isPointInRect(point, rect) { return point.x >= rect.left && point.x <= rect.right && point.y >= rect.top && point.y <= rect.bottom; } }, { key: "isPointInTriangle", value: function isPointInTriangle(cursor, parentRect, flyoutRect) { var exitX = this.exitPoint ? this.exitPoint.x : parentRect.right; var distParent = Math.abs(exitX - parentRect.right); var distFlyout = Math.abs(exitX - flyoutRect.left); var triangleApex, baseTop, baseBottom; // Determine direction: Moving towards Flyout (default) or towards Parent (backwards) if (distParent < distFlyout) { // Moving towards Flyout triangleApex = this.exitPoint || { x: parentRect.right, y: parentRect.top + parentRect.height / 2 }; baseTop = { x: flyoutRect.left, y: flyoutRect.top - 100 }; baseBottom = { x: flyoutRect.left, y: flyoutRect.bottom + 100 }; } else { // Moving towards Parent triangleApex = this.exitPoint || { x: flyoutRect.left, y: flyoutRect.top + flyoutRect.height / 2 }; baseTop = { x: parentRect.right, y: parentRect.top - 100 }; baseBottom = { x: parentRect.right, y: parentRect.bottom + 100 }; } return this.pointInTriangle(cursor, triangleApex, baseTop, baseBottom); } }, { key: "pointInTriangle", value: function pointInTriangle(p, v1, v2, v3) { var sign = function sign(p1, p2, p3) { return (p1.x - p3.x) * (p2.y - p3.y) - (p2.x - p3.x) * (p1.y - p3.y); }; var d1 = sign(p, v1, v2); var d2 = sign(p, v2, v3); var d3 = sign(p, v3, v1); var hasNeg = 0 > d1 || 0 > d2 || 0 > d3; var hasPos = 0 < d1 || 0 < d2 || 0 < d3; return !(hasNeg && hasPos); } }, { key: "positionFlyout", value: function positionFlyout(parentLi, flyoutMenu) { var windowHeight = window.innerHeight; var flyoutHeight = flyoutMenu.offsetHeight; var parentRect = parentLi.getBoundingClientRect(); var relativeTop = parentRect.top; if (relativeTop + flyoutHeight > windowHeight) { var newTop = windowHeight - flyoutHeight - relativeTop; if (newTop < -relativeTop) { newTop = -relativeTop + 10; } flyoutMenu.style.top = newTop + 'px'; } else { delete flyoutMenu.style.top; } } }, { key: "handleKeyNavigation", value: function handleKeyNavigation(event, parentLi, flyoutMenu) { var allLinks = flyoutMenu.querySelectorAll('a'); var focusedLink = flyoutMenu.querySelector('a:focus'); var currentIndex = Array.from(allLinks).indexOf(focusedLink); var isVisible = flyoutMenu.classList.contains('elementor-submenu-flyout-visible'); switch (event.key) { case 'ArrowRight': if (!isVisible) { var _allLinks$; event.preventDefault(); this.showFlyout(parentLi, flyoutMenu); (_allLinks$ = allLinks[0]) === null || _allLinks$ === void 0 || _allLinks$.focus(); } break; case 'ArrowLeft': if (isVisible) { var _parentLi$querySelect; event.preventDefault(); this.hideFlyout(flyoutMenu); (_parentLi$querySelect = parentLi.querySelector(':scope > a')) === null || _parentLi$querySelect === void 0 || _parentLi$querySelect.focus(); } break; case 'ArrowDown': if (isVisible && currentIndex >= 0) { var _allLinks$nextIndex; event.preventDefault(); var nextIndex = (currentIndex + 1) % allLinks.length; (_allLinks$nextIndex = allLinks[nextIndex]) === null || _allLinks$nextIndex === void 0 || _allLinks$nextIndex.focus(); } break; case 'ArrowUp': if (isVisible && currentIndex >= 0) { var _allLinks$prevIndex; event.preventDefault(); var prevIndex = (currentIndex - 1 + allLinks.length) % allLinks.length; (_allLinks$prevIndex = allLinks[prevIndex]) === null || _allLinks$prevIndex === void 0 || _allLinks$prevIndex.focus(); } break; case 'Escape': if (isVisible) { var _parentLi$querySelect2; event.preventDefault(); this.hideFlyout(flyoutMenu); (_parentLi$querySelect2 = parentLi.querySelector(':scope > a')) === null || _parentLi$querySelect2 === void 0 || _parentLi$querySelect2.focus(); } break; } } }, { key: "setupMobileSupport", value: function setupMobileSupport() { var _this8 = this; if (window.innerWidth > 782) { return; } var menuLinks = document.querySelectorAll('#adminmenu li.elementor-has-flyout > a'); menuLinks.forEach(function (link) { link.addEventListener('click', function (event) { _this8.handleMobileClick(event, link); }); }); document.addEventListener('click', function (event) { _this8.handleDocumentClick(event); }); } }, { key: "handleMobileClick", value: function handleMobileClick(event, link) { var parentLi = link.parentElement; var flyoutMenu = parentLi.querySelector('.elementor-submenu-flyout'); if (!flyoutMenu) { return; } if (parentLi.classList.contains('elementor-flyout-open')) { return; } event.preventDefault(); document.querySelectorAll('#adminmenu li.elementor-has-flyout').forEach(function (item) { item.classList.remove('elementor-flyout-open'); }); parentLi.classList.add('elementor-flyout-open'); } }, { key: "handleDocumentClick", value: function handleDocumentClick(event) { if (!event.target.closest('#adminmenu li.elementor-has-flyout')) { document.querySelectorAll('#adminmenu li.elementor-has-flyout').forEach(function (item) { item.classList.remove('elementor-flyout-open'); }); } } }]); }(); /***/ }), /***/ "../modules/editor-one/assets/js/admin-menu/classes/flyout-menu-renderer.js": /*!**********************************************************************************!*\ !*** ../modules/editor-one/assets/js/admin-menu/classes/flyout-menu-renderer.js ***! \**********************************************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { "use strict"; var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports.FlyoutMenuRenderer = void 0; var _classCallCheck2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "../node_modules/@babel/runtime/helpers/classCallCheck.js")); var _createClass2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/createClass */ "../node_modules/@babel/runtime/helpers/createClass.js")); var FlyoutMenuRenderer = exports.FlyoutMenuRenderer = /*#__PURE__*/function () { function FlyoutMenuRenderer(config) { (0, _classCallCheck2.default)(this, FlyoutMenuRenderer); this.config = config; } return (0, _createClass2.default)(FlyoutMenuRenderer, [{ key: "render", value: function render() { var editorFlyout = this.config.editorFlyout; if (!editorFlyout || !editorFlyout.items || !editorFlyout.items.length) { return false; } var editorLi = this.findEditorInMenu("#toplevel_page_elementor-home"); if (!editorLi) { return false; } editorLi.classList.add('elementor-has-flyout'); var editorFlyoutUl = document.createElement('ul'); editorFlyoutUl.className = 'elementor-submenu-flyout elementor-level-3'; editorFlyout.items.forEach(function (item) { if (item.has_divider_before) { var dividerLi = document.createElement('li'); dividerLi.className = 'elementor-flyout-divider'; dividerLi.setAttribute('role', 'separator'); editorFlyoutUl.appendChild(dividerLi); } var li = document.createElement('li'); li.setAttribute('data-group-id', item.group_id || ''); var a = document.createElement('a'); a.href = item.url; a.textContent = item.label; li.appendChild(a); editorFlyoutUl.appendChild(li); }); editorLi.appendChild(editorFlyoutUl); return true; } }, { key: "findEditorInMenu", value: function findEditorInMenu(menuSelector) { var menuItem = document.querySelector(menuSelector); if (!menuItem) { return null; } var submenu = menuItem.querySelector('.wp-submenu'); if (!submenu) { return null; } var editorItem = submenu.querySelector('a[href$="page=elementor"]'); if (!editorItem) { return null; } return editorItem.closest('li'); } }]); }(); /***/ }), /***/ "../modules/editor-one/assets/js/admin-menu/classes/sidebar-menu-handler.js": /*!**********************************************************************************!*\ !*** ../modules/editor-one/assets/js/admin-menu/classes/sidebar-menu-handler.js ***! \**********************************************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { "use strict"; var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports.SidebarMenuHandler = void 0; var _classCallCheck2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "../node_modules/@babel/runtime/helpers/classCallCheck.js")); var _createClass2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/createClass */ "../node_modules/@babel/runtime/helpers/createClass.js")); var SidebarMenuHandler = exports.SidebarMenuHandler = /*#__PURE__*/function () { function SidebarMenuHandler() { (0, _classCallCheck2.default)(this, SidebarMenuHandler); this.elementorHomeMenu = this.findElementorHomeMenu(); if (this.elementorHomeMenu) { this.deactivateOtherMenus(); this.activateElementorMenu(); this.highlightSubmenu(); } } return (0, _createClass2.default)(SidebarMenuHandler, [{ key: "findElementorHomeMenu", value: function findElementorHomeMenu() { return document.querySelector('#toplevel_page_elementor-home'); } }, { key: "deactivateOtherMenus", value: function deactivateOtherMenus() { var _this = this; document.querySelectorAll('#adminmenu li.wp-has-current-submenu').forEach(function (item) { if (item !== _this.elementorHomeMenu) { item.classList.remove('wp-has-current-submenu', 'wp-menu-open', 'selected'); item.classList.add('wp-not-current-submenu'); var link = item.querySelector(':scope > a'); if (link) { link.classList.remove('wp-has-current-submenu', 'wp-menu-open', 'current'); } } }); } }, { key: "activateElementorMenu", value: function activateElementorMenu() { this.elementorHomeMenu.classList.remove('wp-not-current-submenu'); this.elementorHomeMenu.classList.add('wp-has-current-submenu', 'wp-menu-open', 'selected'); var elementorLink = this.elementorHomeMenu.querySelector(':scope > a.menu-top'); if (elementorLink) { elementorLink.classList.add('wp-has-current-submenu', 'wp-menu-open'); } } }, { key: "highlightSubmenu", value: function highlightSubmenu() { var currentUrl = new URL(window.location.href); var searchParams = currentUrl.searchParams; var page = searchParams.get('page'); var targetSlug = 'elementor'; if ('elementor' === page || 'elementor-home' === page) { targetSlug = 'elementor'; } else if ('e-form-submissions' === page) { targetSlug = 'e-form-submissions'; } else if ('elementor-theme-builder' === page) { targetSlug = 'elementor-theme-builder'; } var submenuItems = this.elementorHomeMenu.querySelectorAll('.wp-submenu li'); submenuItems.forEach(function (item) { var link = item.querySelector('a'); if (!link) { return; } item.classList.remove('current'); link.classList.remove('current'); link.setAttribute('aria-current', ''); var linkUrl = new URL(link.href, window.location.origin); var linkPage = linkUrl.searchParams.get('page'); if (linkPage === targetSlug) { item.classList.add('current'); link.classList.add('current'); link.setAttribute('aria-current', 'page'); } }); } }]); }(); /***/ }), /***/ "../node_modules/@babel/runtime/helpers/classCallCheck.js": /*!****************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/classCallCheck.js ***! \****************************************************************/ /***/ ((module) => { function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); } module.exports = _classCallCheck, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/createClass.js": /*!*************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/createClass.js ***! \*************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../node_modules/@babel/runtime/helpers/toPropertyKey.js"); function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, toPropertyKey(o.key), o); } } function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; } module.exports = _createClass, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js": /*!***********************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/interopRequireDefault.js ***! \***********************************************************************/ /***/ ((module) => { function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; } module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/toPrimitive.js": /*!*************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/toPrimitive.js ***! \*************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var _typeof = (__webpack_require__(/*! ./typeof.js */ "../node_modules/@babel/runtime/helpers/typeof.js")["default"]); function toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } module.exports = toPrimitive, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/toPropertyKey.js": /*!***************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/toPropertyKey.js ***! \***************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var _typeof = (__webpack_require__(/*! ./typeof.js */ "../node_modules/@babel/runtime/helpers/typeof.js")["default"]); var toPrimitive = __webpack_require__(/*! ./toPrimitive.js */ "../node_modules/@babel/runtime/helpers/toPrimitive.js"); function toPropertyKey(t) { var i = toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; } module.exports = toPropertyKey, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/typeof.js": /*!********************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/typeof.js ***! \********************************************************/ /***/ ((module) => { function _typeof(o) { "@babel/helpers - typeof"; return module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, module.exports.__esModule = true, module.exports["default"] = module.exports, _typeof(o); } module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }) /******/ }); /************************************************************************/ /******/ // The module cache /******/ var __webpack_module_cache__ = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ // Check if module is in cache /******/ var cachedModule = __webpack_module_cache__[moduleId]; /******/ if (cachedModule !== undefined) { /******/ return cachedModule.exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = __webpack_module_cache__[moduleId] = { /******/ // no module.id needed /******/ // no module.loaded needed /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__); /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /************************************************************************/ var __webpack_exports__ = {}; // This entry needs to be wrapped in an IIFE because it needs to be in strict mode. (() => { "use strict"; /*!*********************************************************!*\ !*** ../modules/editor-one/assets/js/admin-menu/app.js ***! \*********************************************************/ var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); var _classCallCheck2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "../node_modules/@babel/runtime/helpers/classCallCheck.js")); var _createClass2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/createClass */ "../node_modules/@babel/runtime/helpers/createClass.js")); var _flyoutMenuRenderer = __webpack_require__(/*! ./classes/flyout-menu-renderer */ "../modules/editor-one/assets/js/admin-menu/classes/flyout-menu-renderer.js"); var _sidebarMenuHandler = __webpack_require__(/*! ./classes/sidebar-menu-handler */ "../modules/editor-one/assets/js/admin-menu/classes/sidebar-menu-handler.js"); var _flyoutInteractionHandler = __webpack_require__(/*! ./classes/flyout-interaction-handler */ "../modules/editor-one/assets/js/admin-menu/classes/flyout-interaction-handler.js"); var EditorOneMenu = /*#__PURE__*/function () { function EditorOneMenu() { var _window; (0, _classCallCheck2.default)(this, EditorOneMenu); this.config = ((_window = window) === null || _window === void 0 ? void 0 : _window.editorOneMenuConfig) || {}; } return (0, _createClass2.default)(EditorOneMenu, [{ key: "init", value: function init() { if (this.isSidebarNavigationActive()) { new _sidebarMenuHandler.SidebarMenuHandler(); return; } this.buildFlyoutMenus(); } }, { key: "isSidebarNavigationActive", value: function isSidebarNavigationActive() { return document.body.classList.contains('e-has-sidebar-navigation'); } }, { key: "buildFlyoutMenus", value: function buildFlyoutMenus() { var renderer = new _flyoutMenuRenderer.FlyoutMenuRenderer(this.config); if (renderer.render()) { new _flyoutInteractionHandler.FlyoutInteractionHandler().handle(); } } }]); }(); var initEditorOneMenu = function initEditorOneMenu() { var editorOneMenu = new EditorOneMenu(); editorOneMenu.init(); }; if ('loading' === document.readyState) { document.addEventListener('DOMContentLoaded', initEditorOneMenu); } else { initEditorOneMenu(); } })(); /******/ })() ; //# sourceMappingURL=editor-one-menu.js.map
[+]
..
[-] editor-environment-v2.js
[edit]
[-] daedc6797eaad5c82711.bundle.min.js
[edit]
[-] text-editor.0c9960167105139d27c9.bundle.js
[edit]
[-] frontend.min.js
[edit]
[-] editor-v4-opt-in-alphachip.strings.js
[edit]
[-] styleguide-app-initiator.strings.js
[edit]
[-] admin-notifications.min.js
[edit]
[-] admin-notifications.js
[edit]
[-] 9f88a0d716a691c2448a.bundle.min.js
[edit]
[-] nested-accordion.js
[edit]
[-] editor-loader-v1.strings.js
[edit]
[-] editor.js
[edit]
[-] e-home-screen.strings.js
[edit]
[-] c13d205fa26f8af1ce7c.bundle.js
[edit]
[-] checklist.strings.js
[edit]
[-] progress.b1057ba870016558bce1.bundle.js
[edit]
[-] e1cb4d726bb59646c677.bundle.min.js
[edit]
[-] 5b13d0f77c0ac139c979.bundle.js
[edit]
[-] dev-tools.strings.js
[edit]
[-] 315ffba5a5bf098be034.bundle.min.js
[edit]
[-] atomic-widgets-editor.min.js.LICENSE.txt
[edit]
[-] e-react-promotions.min.js
[edit]
[-] admin-feedback.min.js
[edit]
[-] editor-v4-welcome-opt-in.min.js
[edit]
[-] 877227b9d759b63096a9.bundle.js
[edit]
[-] editor-one-sidebar-navigation.min.js.LICENSE.txt
[edit]
[-] nested-tabs.min.js
[edit]
[-] 6a19e86dd8c1f9165dbe.bundle.js
[edit]
[-] frontend.js
[edit]
[-] kit-library.9c4bbee79edf32c6fcb3.bundle.js
[edit]
[-] editor-modules.min.js.LICENSE.txt
[edit]
[-] container-converter.min.js
[edit]
[-] kit-elements-defaults-editor.js
[edit]
[-] notes.min.js
[edit]
[-] ai-gutenberg.js
[edit]
[-] text-path.b5766aff4e92f7f6c661.bundle.min.js.LICENSE.txt
[edit]
[-] import-export-customization-admin.js
[edit]
[-] bff204c1ab0d15e0a69b.bundle.min.js
[edit]
[-] editor-notifications.min.js
[edit]
[-] wp-audio.0ba9114964acf4c37ca2.bundle.js
[edit]
[-] 45167112673d4bc99f6b.bundle.js
[edit]
[-] counter.7310c276bc7865a3d438.bundle.js
[edit]
[-] b668f6906820570e60b5.bundle.min.js
[edit]
[-] ac53273f887639e3c6ea.bundle.min.js
[edit]
[-] checklist.min.js
[edit]
[-] editor-one-menu.min.js
[edit]
[-] bf55a1adc050b89179ff.bundle.min.js
[edit]
[-] nested-accordion.4340b64226322f36bcc0.bundle.js
[edit]
[-] counter.12335f45aaa79d244f24.bundle.min.js
[edit]
[-] e-wc-product-editor.strings.js
[edit]
[-] tabs.18344b05d8d1ea0702bc.bundle.min.js
[edit]
[-] checklist.js
[edit]
[-] admin-top-bar.min.js
[edit]
[-] interactions.min.js
[edit]
[-] admin.strings.js
[edit]
[-] editor-loader-v1.min.js
[edit]
[-] media-hints.js
[edit]
[-] bfff0d754d68404bd5a6.bundle.js
[edit]
[-] youtube-handler.js
[edit]
[-] 4886b33c17731474e197.bundle.min.js
[edit]
[-] 254132ea6903b7cf0c30.bundle.js
[edit]
[-] cf6ec600fcf4e08ba6d3.bundle.js
[edit]
[-] import-export-admin.min.js
[edit]
[-] editor-loader-v2.strings.js
[edit]
[-] admin.js
[edit]
[-] app.strings.js
[edit]
[-] section-editor-handlers.53ffedef32043348b99b.bundle.min.js
[edit]
[-] editor-environment-v2.strings.js
[edit]
[-] shared-frontend-handlers.3b079824c37a5fe2bdaa.bundle.js
[edit]
[-] 3c838288a9b7ddd2aea4.bundle.min.js
[edit]
[-] editor-one-sidebar-navigation.js
[edit]
[-] admin-modules.js
[edit]
[-] styleguide-app-initiator.js
[edit]
[-] youtube-handler.min.js
[edit]
[-] admin-top-bar.js
[edit]
[-] editor-modules.min.js
[edit]
[-] e-home-screen.min.js
[edit]
[-] shared-editor-handlers.cacdcbed391abf4b48b0.bundle.min.js
[edit]
[-] pro-install-events.strings.js
[edit]
[-] ba292d36d983cead2a5b.bundle.js
[edit]
[-] shared-editor-handlers.3023894100138e442ab0.bundle.js
[edit]
[-] gutenberg.min.js
[edit]
[-] editor-one-top-bar.min.js.LICENSE.txt
[edit]
[-] app.min.js
[edit]
[-] ai-media-library.strings.js
[edit]
[-] section-frontend-handlers.c3950c6b190ca134bc8d.bundle.js
[edit]
[-] element-manager-admin.min.js
[edit]
[-] nested-tabs.js
[edit]
[-] toggle.b75e66d2aca6f6ee742e.bundle.js
[edit]
[-] elementor-admin-bar.strings.js
[edit]
[-] e4d209bf3a704ff88e1a.bundle.js
[edit]
[-] ai-unify-product-images.min.js
[edit]
[-] app.js
[edit]
[-] daecdcc50702fd1d72f1.bundle.js
[edit]
[-] e-home-screen.js
[edit]
[-] editor-loader-v1.js
[edit]
[-] editor-one-menu.strings.js
[edit]
[-] editor-notifications.js
[edit]
[-] editor-v4-opt-in-alphachip.js
[edit]
[-] editor.min.js.LICENSE.txt
[edit]
[-] ai-admin.strings.js
[edit]
[-] text-path.eb787fc2b296f56e6e5f.bundle.js
[edit]
[+]
packages
[-] video.6e96510afa701d1f2ebc.bundle.js
[edit]
[-] nested-elements.min.js
[edit]
[-] kit-elements-defaults-editor.min.js
[edit]
[-] e2a127e2fb01b578d2ba.bundle.js
[edit]
[-] new-template.strings.js
[edit]
[-] tabs-handler.js
[edit]
[-] gutenberg.js
[edit]
[-] 4812775bcbc0ff8a9043.bundle.min.js
[edit]
[-] lightbox.d1799e507b570f6b0496.bundle.min.js
[edit]
[-] ai-admin.min.js.LICENSE.txt
[edit]
[-] ai-gutenberg.min.js.LICENSE.txt
[edit]
[-] 8277989eebcfba278cb0.bundle.min.js
[edit]
[-] text-path.b5766aff4e92f7f6c661.bundle.min.js
[edit]
[-] dev-tools.js
[edit]
[-] editor-document.js
[edit]
[-] editor-notifications.strings.js
[edit]
[-] e7d71f4e1d39edbc1fb6.bundle.js
[edit]
[-] 8e8b47ad5b4e4d038c80.bundle.js
[edit]
[-] ai-media-library.js
[edit]
[-] ai-layout.min.js
[edit]
[-] web-cli.strings.js
[edit]
[-] admin-modules.min.js.LICENSE.txt
[edit]
[-] alert.42cc1d522ef5c60bf874.bundle.min.js
[edit]
[-] 7a5da9cf33b7d3557599.bundle.js
[edit]
[-] nested-tabs.a2401356d329f179475e.bundle.min.js
[edit]
[-] editor-v4-opt-in-alphachip.min.js
[edit]
[-] app-packages.js
[edit]
[-] app-loader.strings.js
[edit]
[-] common.min.js
[edit]
[-] announcements-app.strings.js
[edit]
[-] styleguide-app.04340244193733d78622.bundle.min.js
[edit]
[-] e-react-promotions.strings.js
[edit]
[-] 7a8c6c081d659e35d7d2.bundle.min.js
[edit]
[-] b09b262748a4be8417ce.bundle.js
[edit]
[-] 7745b82dc4a05385ef1f.bundle.js
[edit]
[-] import-export-admin.strings.js
[edit]
[-] editor-one-admin.js
[edit]
[-] styleguide-app-initiator.min.js.LICENSE.txt
[edit]
[-] web-cli.min.js
[edit]
[-] 72459a35b6570acc77f3.bundle.js
[edit]
[-] pro-free-trial-popup.js
[edit]
[-] fa64159422dec32bd185.bundle.js
[edit]
[-] container-converter.strings.js
[edit]
[-] common-modules.min.js
[edit]
[-] common-modules.js
[edit]
[-] 8b4f35f99eb521b37d0c.bundle.js
[edit]
[-] ai-gutenberg.strings.js
[edit]
[-] frontend-modules.min.js
[edit]
[-] ef2100ac3eda1a957819.bundle.min.js
[edit]
[-] app-packages.strings.js
[edit]
[-] d42de03ef4a0f50e39ca.bundle.min.js
[edit]
[-] element-manager-admin.js
[edit]
[-] d67ddd6f08b08392c42f.bundle.js
[edit]
[-] toggle.2a177a3ef4785d3dfbc5.bundle.min.js
[edit]
[-] 0bc41c4656ca54cf2aca.bundle.min.js
[edit]
[-] cloud-library-screenshot.strings.js
[edit]
[-] editor-one-sidebar-navigation.min.js
[edit]
[-] a2ea929f439e819b924b.bundle.min.js
[edit]
[-] common.js
[edit]
[-] new-template.min.js
[edit]
[-] 9832c866a8fe9b51f9d2.bundle.min.js
[edit]
[-] 3c18b6eb4e735ca7e8bf.bundle.js
[edit]
[-] app-loader.js
[edit]
[-] editor-v4-welcome-opt-in.strings.js
[edit]
[-] b96d70044d0d67c2df19.bundle.min.js
[edit]
[-] ai-gutenberg.min.js
[edit]
[-] floating-bars.a6e6a043444b62f64f82.bundle.js
[edit]
[-] admin.min.js.LICENSE.txt
[edit]
[-] editor.min.js
[edit]
[-] d0d9578389b742468cb7.bundle.min.js
[edit]
[-] nested-accordion.strings.js
[edit]
[-] text-editor.45609661e409413f1cef.bundle.min.js
[edit]
[-] beta-tester.strings.js
[edit]
[-] nested-title-keyboard-handler.0c2b498e3e0695a1dc19.bundle.js
[edit]
[-] editor-modules.strings.js
[edit]
[-] elementor-admin-bar.js
[edit]
[-] 84288e5699f5d8b8b23e.bundle.min.js
[edit]
[-] kit-elements-defaults-editor.strings.js
[edit]
[-] 91c1e96a5c75bbc8ec6d.bundle.js
[edit]
[-] 6cb9e42b9b73a76315e0.bundle.js
[edit]
[-] 04441cacbcc0ffea6713.bundle.min.js
[edit]
[-] editor-loader-v2.js
[edit]
[-] kit-elements-defaults-editor.min.js.LICENSE.txt
[edit]
[-] 5be98965bbdf1c631fdf.bundle.min.js
[edit]
[-] ai.strings.js
[edit]
[-] 137ba3baf43f287996c2.bundle.min.js
[edit]
[-] interactions.js
[edit]
[-] progress.0ea083b809812c0e3aa1.bundle.min.js
[edit]
[-] elementor-admin-bar.min.js
[edit]
[-] interactions.strings.js
[edit]
[-] alert.fd509aa768e7b35a8e32.bundle.js
[edit]
[-] editor-one-top-bar.min.js
[edit]
[-] admin-modules.strings.js
[edit]
[-] b423d91809cf7e0cb8b0.bundle.js
[edit]
[-] tabs-preview-handler.min.js
[edit]
[-] nested-elements.js
[edit]
[-] notes.strings.js
[edit]
[-] editor-one-menu.js
[edit]
[-] tabs-preview-handler.js
[edit]
[-] 2934fa380b70eb462ece.bundle.min.js
[edit]
[-] tabs-handler.min.js
[edit]
[-] frontend-modules.js
[edit]
[-] webpack.runtime.min.js
[edit]
[-] cloud-library-screenshot.js
[edit]
[-] ai-media-library.min.js
[edit]
[-] styleguide-app-initiator.min.js
[edit]
[-] lightbox.a1f44406e887981f48c7.bundle.js
[edit]
[-] bb708343060feb5c4a5d.bundle.min.js
[edit]
[-] floating-bars.740d06d17cea5cebdb61.bundle.min.js
[edit]
[-] common-modules.strings.js
[edit]
[-] editor-document.strings.js
[edit]
[-] pro-free-trial-popup.strings.js
[edit]
[-] 8b6212b7ad0ef8719b6b.bundle.min.js
[edit]
[-] e-react-promotions.js
[edit]
[-] app-loader.min.js
[edit]
[-] shared-frontend-handlers.03caa53373b56d3bab67.bundle.min.js
[edit]
[-] web-cli.js
[edit]
[-] import-export-customization-admin.min.js
[edit]
[-] styleguide.js
[edit]
[-] e3b540e2c02813e75f38.bundle.min.js
[edit]
[-] webpack.runtime.js
[edit]
[-] editor-modules.js
[edit]
[-] announcements-app.min.js
[edit]
[-] video.86d44e46e43d0807e708.bundle.min.js
[edit]
[-] db27207322ef9be952ee.bundle.js
[edit]
[-] image-carousel.8b25f3674c29b829a867.bundle.js
[edit]
[-] app-packages.min.js.LICENSE.txt
[edit]
[-] media-hints.min.js
[edit]
[-] styleguide.min.js
[edit]
[-] ai-layout.strings.js
[edit]
[-] ai-media-library.min.js.LICENSE.txt
[edit]
[-] 8ecfd8495b7ec419862a.bundle.js
[edit]
[-] 54d62e5edbcf81b72a1f.bundle.min.js
[edit]
[-] e393545679b12d012fba.bundle.js
[edit]
[-] 3d1613aca86991103452.bundle.min.js
[edit]
[-] editor-v4-opt-in.js
[edit]
[-] cloud-library-screenshot.min.js.LICENSE.txt
[edit]
[-] b97ced1683f62f5686fa.bundle.min.js
[edit]
[-] e-wc-product-editor.js
[edit]
[-] media-hints.strings.js
[edit]
[-] editor-one-admin.strings.js
[edit]
[-] 35423d812dc1d52fdb27.bundle.min.js
[edit]
[-] ai-unify-product-images.strings.js
[edit]
[-] new-template.js
[edit]
[-] app.min.js.LICENSE.txt
[edit]
[-] atomic-widgets-frontend-handler.min.js
[edit]
[-] accordion.8b0db5058afeb74622f5.bundle.min.js
[edit]
[-] editor.strings.js
[edit]
[-] 7dae73b622bebe8a5d94.bundle.js
[edit]
[-] responsive-bar.min.js
[edit]
[-] accordion.b9a0ab19c7c872c405d7.bundle.js
[edit]
[-] admin-top-bar.strings.js
[edit]
[-] section-editor-handlers.d65899d232b5339510d7.bundle.js
[edit]
[-] atomic-widgets-editor.js
[edit]
[-] 7d17894dc2ca045cfbb5.bundle.min.js
[edit]
[-] kit-library.4d4a9d3b76f7410214c3.bundle.min.js
[edit]
[-] d52aa05c75af56327744.bundle.js
[edit]
[-] 45f1ae567e48fe3da9b0.bundle.min.js
[edit]
[-] import-export-customization-admin.strings.js
[edit]
[-] 40d841f4b4ce7b1928f5.bundle.js
[edit]
[-] admin-feedback.js
[edit]
[-] 45a55c192b49ad3f224d.bundle.js
[edit]
[-] onboarding.31a5615a753ffac2c800.bundle.min.js
[edit]
[-] 7f2c78456ab3f406f3df.bundle.js
[edit]
[-] atomic-widgets-frontend-handler.js
[edit]
[-] e883e6638ef93bfd3204.bundle.js
[edit]
[-] editor-v4-opt-in.strings.js
[edit]
[-] ef35c83e4628f0a5c328.bundle.js
[edit]
[-] cf2707501445e5b44fbe.bundle.js
[edit]
[-] editor-v4-opt-in.min.js.LICENSE.txt
[edit]
[-] editor-document.min.js
[edit]
[-] beta-tester.js
[edit]
[-] nested-accordion.294d40984397351fd0f5.bundle.min.js
[edit]
[-] common.min.js.LICENSE.txt
[edit]
[-] c4d335a90ec9a10c603f.bundle.js
[edit]
[-] pro-install-events.js
[edit]
[-] contact-buttons.086261d3e9c4d8037686.bundle.js
[edit]
[-] editor-v4-welcome-opt-in.js
[edit]
[-] 9dcd9e88237da6496816.bundle.min.js
[edit]
[-] 1f7fa1d64dd4cef4a3c0.bundle.js
[edit]
[-] styleguide.strings.js
[edit]
[-] nested-accordion.min.js.LICENSE.txt
[edit]
[-] pro-free-trial-popup.min.js
[edit]
[-] 79016b3aba18d6be6dc3.bundle.min.js
[edit]
[-] nested-title-keyboard-handler.2a67d3cc630e11815acc.bundle.min.js
[edit]
[-] ai-unify-product-images.js
[edit]
[-] ai.min.js.LICENSE.txt
[edit]
[-] onboarding.63cdf72a450944ebd5f7.bundle.js
[edit]
[-] announcements-app.js
[edit]
[-] 197583acd246fea0e25d.bundle.js
[edit]
[-] web-cli.min.js.LICENSE.txt
[edit]
[-] ai-layout.js
[edit]
[-] e-wc-product-editor.min.js
[edit]
[-] nested-elements.strings.js
[edit]
[-] a9f41949787209626737.bundle.min.js
[edit]
[-] app-packages.min.js
[edit]
[-] atomic-widgets-editor.strings.js
[edit]
[-] e459c6c89c0c0899c850.bundle.js
[edit]
[-] container-editor-handlers.e7e069c4e656425c51f8.bundle.js
[edit]
[-] 8ac2c6e532225b54dba2.bundle.js
[edit]
[-] editor-one-sidebar-navigation.strings.js
[edit]
[-] admin-feedback.strings.js
[edit]
[-] admin.min.js
[edit]
[-] 00f53f1b378f6c98c043.bundle.min.js
[edit]
[-] nested-tabs.strings.js
[edit]
[-] editor-environment-v2.min.js
[edit]
[-] nested-accordion.min.js
[edit]
[-] 85106d35eeb23f6f4a33.bundle.min.js
[edit]
[-] admin-notifications.strings.js
[edit]
[-] section-frontend-handlers.d85ab872da118940910d.bundle.min.js
[edit]
[-] 0982f37bec0944fbcb10.bundle.js
[edit]
[-] floating-elements-modal.js
[edit]
[-] 3d410a099008411bb011.bundle.js
[edit]
[-] cloud-library-screenshot.min.js
[edit]
[-] container-editor-handlers.a2e8e48d28c5544fb183.bundle.min.js
[edit]
[-] admin-modules.min.js
[edit]
[-] ai-layout.min.js.LICENSE.txt
[edit]
[-] container-converter.js
[edit]
[-] editor-interactions.strings.js
[edit]
[-] responsive-bar.js
[edit]
[-] floating-elements-modal.min.js
[edit]
[-] editor-interactions.min.js
[edit]
[-] 9167bffba76b36a431f5.bundle.min.js
[edit]
[-] ai.min.js
[edit]
[-] image-carousel.6167d20b95b33386757b.bundle.min.js
[edit]
[-] e-wc-product-editor.min.js.LICENSE.txt
[edit]
[-] editor-interactions.js
[edit]
[-] 4246c56134ca9ba65163.bundle.js
[edit]
[-] editor-loader-v2.min.js
[edit]
[-] ai-admin.min.js
[edit]
[-] gutenberg.strings.js
[edit]
[-] checklist.min.js.LICENSE.txt
[edit]
[-] aee13673e923469c3275.bundle.min.js
[edit]
[-] element-manager-admin.min.js.LICENSE.txt
[edit]
[-] wp-audio.c9624cb6e5dc9de86abd.bundle.min.js
[edit]
[-] ai-admin.js
[edit]
[-] 982fcee032dda41fa3a1.bundle.min.js
[edit]
[-] editor-one-admin.min.js
[edit]
[-] nested-tabs.7a338e6d7e060c473993.bundle.js
[edit]
[-] floating-elements-modal.strings.js
[edit]
[-] responsive-bar.strings.js
[edit]
[-] ai-unify-product-images.min.js.LICENSE.txt
[edit]
[-] contact-buttons.e98d0220ce8c38404e7e.bundle.min.js
[edit]
[-] atomic-widgets-editor.min.js
[edit]
[-] ai.js
[edit]
[-] 1564d2bfa4591bf857f3.bundle.min.js
[edit]
[-] nested-tabs.min.js.LICENSE.txt
[edit]
[-] import-export-admin.js
[edit]
[-] editor-one-top-bar.strings.js
[edit]
[-] notes.js
[edit]
[-] 75915b40e37cc6d910ef.bundle.js
[edit]
[-] editor-v4-opt-in.min.js
[edit]
[-] dev-tools.min.js
[edit]
[-] common.strings.js
[edit]
[-] tabs.40498fa771d612162c53.bundle.js
[edit]
[-] element-manager-admin.strings.js
[edit]
[-] beta-tester.min.js
[edit]
[-] import-export-customization-admin.min.js.LICENSE.txt
[edit]
[-] pro-install-events.min.js
[edit]
[-] styleguide-app.36ecabae74d9b87fc5a8.bundle.js
[edit]
[-] editor-one-top-bar.js
[edit]
[-] announcements-app.min.js.LICENSE.txt
[edit]