| @@ -1,4 +1,5 @@ | ||
| 1 | +/*! elementor - v3.13.2 - 11-05-2023 */ | |
| 1 | 2 | /******/ (() => { // webpackBootstrap |
| 2 | 3 | /******/ var __webpack_modules__ = ({ |
| 3 | 4 | |
| 4 | 5 | /***/ "../node_modules/@babel/runtime/helpers/assertThisInitialized.js": |
| @@ -6,11 +7,13 @@ | ||
| 6 | 7 | !*** ../node_modules/@babel/runtime/helpers/assertThisInitialized.js ***! |
| 7 | 8 | \***********************************************************************/ |
| 8 | 9 | /***/ ((module) => { |
| 9 | 10 | |
| 10 | -function _assertThisInitialized(e) { | |
| 11 | - if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); | |
| 12 | - return e; | |
| 11 | +function _assertThisInitialized(self) { | |
| 12 | + if (self === void 0) { | |
| 13 | + throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); | |
| 14 | + } | |
| 15 | + return self; | |
| 13 | 16 | } |
| 14 | 17 | module.exports = _assertThisInitialized, module.exports.__esModule = true, module.exports["default"] = module.exports; |
| 15 | 18 | |
| 16 | 19 | /***/ }), |
| @@ -20,10 +23,12 @@ | ||
| 20 | 23 | !*** ../node_modules/@babel/runtime/helpers/classCallCheck.js ***! |
| 21 | 24 | \****************************************************************/ |
| 22 | 25 | /***/ ((module) => { |
| 23 | 26 | |
| 24 | -function _classCallCheck(a, n) { | |
| 25 | - if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); | |
| 27 | +function _classCallCheck(instance, Constructor) { | |
| 28 | + if (!(instance instanceof Constructor)) { | |
| 29 | + throw new TypeError("Cannot call a class as a function"); | |
| 30 | + } | |
| 26 | 31 | } |
| 27 | 32 | module.exports = _classCallCheck, module.exports.__esModule = true, module.exports["default"] = module.exports; |
| 28 | 33 | |
| 29 | 34 | /***/ }), |
| @@ -34,18 +39,24 @@ | ||
| 34 | 39 | \*************************************************************/ |
| 35 | 40 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 36 | 41 | |
| 37 | 42 | var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../node_modules/@babel/runtime/helpers/toPropertyKey.js"); |
| 38 | -function _defineProperties(e, r) { | |
| 39 | - for (var t = 0; t < r.length; t++) { | |
| 40 | - var o = r[t]; | |
| 41 | - o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, toPropertyKey(o.key), o); | |
| 43 | +function _defineProperties(target, props) { | |
| 44 | + for (var i = 0; i < props.length; i++) { | |
| 45 | + var descriptor = props[i]; | |
| 46 | + descriptor.enumerable = descriptor.enumerable || false; | |
| 47 | + descriptor.configurable = true; | |
| 48 | + if ("value" in descriptor) descriptor.writable = true; | |
| 49 | + Object.defineProperty(target, toPropertyKey(descriptor.key), descriptor); | |
| 42 | 50 | } |
| 43 | 51 | } |
| 44 | -function _createClass(e, r, t) { | |
| 45 | - return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { | |
| 46 | - writable: !1 | |
| 47 | - }), e; | |
| 52 | +function _createClass(Constructor, protoProps, staticProps) { | |
| 53 | + if (protoProps) _defineProperties(Constructor.prototype, protoProps); | |
| 54 | + if (staticProps) _defineProperties(Constructor, staticProps); | |
| 55 | + Object.defineProperty(Constructor, "prototype", { | |
| 56 | + writable: false | |
| 57 | + }); | |
| 58 | + return Constructor; | |
| 48 | 59 | } |
| 49 | 60 | module.exports = _createClass, module.exports.__esModule = true, module.exports["default"] = module.exports; |
| 50 | 61 | |
| 51 | 62 | /***/ }), |
| @@ -57,15 +68,22 @@ | ||
| 57 | 68 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 58 | 69 | |
| 59 | 70 | var superPropBase = __webpack_require__(/*! ./superPropBase.js */ "../node_modules/@babel/runtime/helpers/superPropBase.js"); |
| 60 | 71 | function _get() { |
| 61 | - return module.exports = _get = "undefined" != typeof Reflect && Reflect.get ? Reflect.get.bind() : function (e, t, r) { | |
| 62 | - var p = superPropBase(e, t); | |
| 63 | - if (p) { | |
| 64 | - var n = Object.getOwnPropertyDescriptor(p, t); | |
| 65 | - return n.get ? n.get.call(arguments.length < 3 ? e : r) : n.value; | |
| 66 | - } | |
| 67 | - }, module.exports.__esModule = true, module.exports["default"] = module.exports, _get.apply(null, arguments); | |
| 72 | + if (typeof Reflect !== "undefined" && Reflect.get) { | |
| 73 | + module.exports = _get = Reflect.get.bind(), module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 74 | + } else { | |
| 75 | + module.exports = _get = function _get(target, property, receiver) { | |
| 76 | + var base = superPropBase(target, property); | |
| 77 | + if (!base) return; | |
| 78 | + var desc = Object.getOwnPropertyDescriptor(base, property); | |
| 79 | + if (desc.get) { | |
| 80 | + return desc.get.call(arguments.length < 3 ? target : receiver); | |
| 81 | + } | |
| 82 | + return desc.value; | |
| 83 | + }, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 84 | + } | |
| 85 | + return _get.apply(this, arguments); | |
| 68 | 86 | } |
| 69 | 87 | module.exports = _get, module.exports.__esModule = true, module.exports["default"] = module.exports; |
| 70 | 88 | |
| 71 | 89 | /***/ }), |
| @@ -75,12 +93,13 @@ | ||
| 75 | 93 | !*** ../node_modules/@babel/runtime/helpers/getPrototypeOf.js ***! |
| 76 | 94 | \****************************************************************/ |
| 77 | 95 | /***/ ((module) => { |
| 78 | 96 | |
| 79 | -function _getPrototypeOf(t) { | |
| 80 | - return module.exports = _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { | |
| 81 | - return t.__proto__ || Object.getPrototypeOf(t); | |
| 82 | - }, module.exports.__esModule = true, module.exports["default"] = module.exports, _getPrototypeOf(t); | |
| 97 | +function _getPrototypeOf(o) { | |
| 98 | + module.exports = _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { | |
| 99 | + return o.__proto__ || Object.getPrototypeOf(o); | |
| 100 | + }, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 101 | + return _getPrototypeOf(o); | |
| 83 | 102 | } |
| 84 | 103 | module.exports = _getPrototypeOf, module.exports.__esModule = true, module.exports["default"] = module.exports; |
| 85 | 104 | |
| 86 | 105 | /***/ }), |
| @@ -91,19 +110,23 @@ | ||
| 91 | 110 | \**********************************************************/ |
| 92 | 111 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 93 | 112 | |
| 94 | 113 | var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf.js */ "../node_modules/@babel/runtime/helpers/setPrototypeOf.js"); |
| 95 | -function _inherits(t, e) { | |
| 96 | - if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); | |
| 97 | - t.prototype = Object.create(e && e.prototype, { | |
| 114 | +function _inherits(subClass, superClass) { | |
| 115 | + if (typeof superClass !== "function" && superClass !== null) { | |
| 116 | + throw new TypeError("Super expression must either be null or a function"); | |
| 117 | + } | |
| 118 | + subClass.prototype = Object.create(superClass && superClass.prototype, { | |
| 98 | 119 | constructor: { |
| 99 | - value: t, | |
| 100 | - writable: !0, | |
| 101 | - configurable: !0 | |
| 120 | + value: subClass, | |
| 121 | + writable: true, | |
| 122 | + configurable: true | |
| 102 | 123 | } |
| 103 | - }), Object.defineProperty(t, "prototype", { | |
| 104 | - writable: !1 | |
| 105 | - }), e && setPrototypeOf(t, e); | |
| 124 | + }); | |
| 125 | + Object.defineProperty(subClass, "prototype", { | |
| 126 | + writable: false | |
| 127 | + }); | |
| 128 | + if (superClass) setPrototypeOf(subClass, superClass); | |
| 106 | 129 | } |
| 107 | 130 | module.exports = _inherits, module.exports.__esModule = true, module.exports["default"] = module.exports; |
| 108 | 131 | |
| 109 | 132 | /***/ }), |
| @@ -113,11 +136,11 @@ | ||
| 113 | 136 | !*** ../node_modules/@babel/runtime/helpers/interopRequireDefault.js ***! |
| 114 | 137 | \***********************************************************************/ |
| 115 | 138 | /***/ ((module) => { |
| 116 | 139 | |
| 117 | -function _interopRequireDefault(e) { | |
| 118 | - return e && e.__esModule ? e : { | |
| 119 | - "default": e | |
| 140 | +function _interopRequireDefault(obj) { | |
| 141 | + return obj && obj.__esModule ? obj : { | |
| 142 | + "default": obj | |
| 120 | 143 | }; |
| 121 | 144 | } |
| 122 | 145 | module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports; |
| 123 | 146 | |
| @@ -130,12 +153,15 @@ | ||
| 130 | 153 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 131 | 154 | |
| 132 | 155 | var _typeof = (__webpack_require__(/*! ./typeof.js */ "../node_modules/@babel/runtime/helpers/typeof.js")["default"]); |
| 133 | 156 | var assertThisInitialized = __webpack_require__(/*! ./assertThisInitialized.js */ "../node_modules/@babel/runtime/helpers/assertThisInitialized.js"); |
| 134 | -function _possibleConstructorReturn(t, e) { | |
| 135 | - if (e && ("object" == _typeof(e) || "function" == typeof e)) return e; | |
| 136 | - if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); | |
| 137 | - return assertThisInitialized(t); | |
| 157 | +function _possibleConstructorReturn(self, call) { | |
| 158 | + if (call && (_typeof(call) === "object" || typeof call === "function")) { | |
| 159 | + return call; | |
| 160 | + } else if (call !== void 0) { | |
| 161 | + throw new TypeError("Derived constructors may only return object or undefined"); | |
| 162 | + } | |
| 163 | + return assertThisInitialized(self); | |
| 138 | 164 | } |
| 139 | 165 | module.exports = _possibleConstructorReturn, module.exports.__esModule = true, module.exports["default"] = module.exports; |
| 140 | 166 | |
| 141 | 167 | /***/ }), |
| @@ -145,12 +171,14 @@ | ||
| 145 | 171 | !*** ../node_modules/@babel/runtime/helpers/setPrototypeOf.js ***! |
| 146 | 172 | \****************************************************************/ |
| 147 | 173 | /***/ ((module) => { |
| 148 | 174 | |
| 149 | -function _setPrototypeOf(t, e) { | |
| 150 | - return module.exports = _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { | |
| 151 | - return t.__proto__ = e, t; | |
| 152 | - }, module.exports.__esModule = true, module.exports["default"] = module.exports, _setPrototypeOf(t, e); | |
| 175 | +function _setPrototypeOf(o, p) { | |
| 176 | + module.exports = _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { | |
| 177 | + o.__proto__ = p; | |
| 178 | + return o; | |
| 179 | + }, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 180 | + return _setPrototypeOf(o, p); | |
| 153 | 181 | } |
| 154 | 182 | module.exports = _setPrototypeOf, module.exports.__esModule = true, module.exports["default"] = module.exports; |
| 155 | 183 | |
| 156 | 184 | /***/ }), |
| @@ -161,11 +189,14 @@ | ||
| 161 | 189 | \***************************************************************/ |
| 162 | 190 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 163 | 191 | |
| 164 | 192 | var getPrototypeOf = __webpack_require__(/*! ./getPrototypeOf.js */ "../node_modules/@babel/runtime/helpers/getPrototypeOf.js"); |
| 165 | -function _superPropBase(t, o) { | |
| 166 | - for (; !{}.hasOwnProperty.call(t, o) && null !== (t = getPrototypeOf(t));); | |
| 167 | - return t; | |
| 193 | +function _superPropBase(object, property) { | |
| 194 | + while (!Object.prototype.hasOwnProperty.call(object, property)) { | |
| 195 | + object = getPrototypeOf(object); | |
| 196 | + if (object === null) break; | |
| 197 | + } | |
| 198 | + return object; | |
| 168 | 199 | } |
| 169 | 200 | module.exports = _superPropBase, module.exports.__esModule = true, module.exports["default"] = module.exports; |
| 170 | 201 | |
| 171 | 202 | /***/ }), |
| @@ -176,19 +207,19 @@ | ||
| 176 | 207 | \*************************************************************/ |
| 177 | 208 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 178 | 209 | |
| 179 | 210 | var _typeof = (__webpack_require__(/*! ./typeof.js */ "../node_modules/@babel/runtime/helpers/typeof.js")["default"]); |
| 180 | -function toPrimitive(t, r) { | |
| 181 | - if ("object" != _typeof(t) || !t) return t; | |
| 182 | - var e = t[Symbol.toPrimitive]; | |
| 183 | - if (void 0 !== e) { | |
| 184 | - var i = e.call(t, r || "default"); | |
| 185 | - if ("object" != _typeof(i)) return i; | |
| 211 | +function _toPrimitive(input, hint) { | |
| 212 | + if (_typeof(input) !== "object" || input === null) return input; | |
| 213 | + var prim = input[Symbol.toPrimitive]; | |
| 214 | + if (prim !== undefined) { | |
| 215 | + var res = prim.call(input, hint || "default"); | |
| 216 | + if (_typeof(res) !== "object") return res; | |
| 186 | 217 | throw new TypeError("@@toPrimitive must return a primitive value."); |
| 187 | 218 | } |
| 188 | - return ("string" === r ? String : Number)(t); | |
| 219 | + return (hint === "string" ? String : Number)(input); | |
| 189 | 220 | } |
| 190 | -module.exports = toPrimitive, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 221 | +module.exports = _toPrimitive, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 191 | 222 | |
| 192 | 223 | /***/ }), |
| 193 | 224 | |
| 194 | 225 | /***/ "../node_modules/@babel/runtime/helpers/toPropertyKey.js": |
| @@ -198,13 +229,13 @@ | ||
| 198 | 229 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 199 | 230 | |
| 200 | 231 | var _typeof = (__webpack_require__(/*! ./typeof.js */ "../node_modules/@babel/runtime/helpers/typeof.js")["default"]); |
| 201 | 232 | var toPrimitive = __webpack_require__(/*! ./toPrimitive.js */ "../node_modules/@babel/runtime/helpers/toPrimitive.js"); |
| 202 | -function toPropertyKey(t) { | |
| 203 | - var i = toPrimitive(t, "string"); | |
| 204 | - return "symbol" == _typeof(i) ? i : i + ""; | |
| 233 | +function _toPropertyKey(arg) { | |
| 234 | + var key = toPrimitive(arg, "string"); | |
| 235 | + return _typeof(key) === "symbol" ? key : String(key); | |
| 205 | 236 | } |
| 206 | -module.exports = toPropertyKey, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 237 | +module.exports = _toPropertyKey, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 207 | 238 | |
| 208 | 239 | /***/ }), |
| 209 | 240 | |
| 210 | 241 | /***/ "../node_modules/@babel/runtime/helpers/typeof.js": |
| @@ -212,16 +243,16 @@ | ||
| 212 | 243 | !*** ../node_modules/@babel/runtime/helpers/typeof.js ***! |
| 213 | 244 | \********************************************************/ |
| 214 | 245 | /***/ ((module) => { |
| 215 | 246 | |
| 216 | -function _typeof(o) { | |
| 247 | +function _typeof(obj) { | |
| 217 | 248 | "@babel/helpers - typeof"; |
| 218 | 249 | |
| 219 | - return module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { | |
| 220 | - return typeof o; | |
| 221 | - } : function (o) { | |
| 222 | - return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; | |
| 223 | - }, module.exports.__esModule = true, module.exports["default"] = module.exports, _typeof(o); | |
| 250 | + return (module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { | |
| 251 | + return typeof obj; | |
| 252 | + } : function (obj) { | |
| 253 | + return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; | |
| 254 | + }, module.exports.__esModule = true, module.exports["default"] = module.exports), _typeof(obj); | |
| 224 | 255 | } |
| 225 | 256 | module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports; |
| 226 | 257 | |
| 227 | 258 | /***/ }) |
| @@ -252,9 +283,10 @@ | ||
| 252 | 283 | /******/ return module.exports; |
| 253 | 284 | /******/ } |
| 254 | 285 | /******/ |
| 255 | 286 | /************************************************************************/ |
| 256 | -// This entry needs to be wrapped in an IIFE because it needs to be in strict mode. | |
| 287 | +var __webpack_exports__ = {}; | |
| 288 | +// This entry need to be wrapped in an IIFE because it need to be in strict mode. | |
| 257 | 289 | (() => { |
| 258 | 290 | "use strict"; |
| 259 | 291 | /*!*********************************************************!*\ |
| 260 | 292 | !*** ../modules/admin-bar/assets/js/frontend/module.js ***! |
| @@ -263,23 +295,23 @@ | ||
| 263 | 295 | |
| 264 | 296 | var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); |
| 265 | 297 | var _classCallCheck2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "../node_modules/@babel/runtime/helpers/classCallCheck.js")); |
| 266 | 298 | var _createClass2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/createClass */ "../node_modules/@babel/runtime/helpers/createClass.js")); |
| 299 | +var _get2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/get */ "../node_modules/@babel/runtime/helpers/get.js")); | |
| 300 | +var _inherits2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/inherits */ "../node_modules/@babel/runtime/helpers/inherits.js")); | |
| 267 | 301 | var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ "../node_modules/@babel/runtime/helpers/possibleConstructorReturn.js")); |
| 268 | 302 | var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ "../node_modules/@babel/runtime/helpers/getPrototypeOf.js")); |
| 269 | -var _get2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/get */ "../node_modules/@babel/runtime/helpers/get.js")); | |
| 270 | -var _inherits2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/inherits */ "../node_modules/@babel/runtime/helpers/inherits.js")); | |
| 271 | -function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); } | |
| 272 | -function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } | |
| 273 | -function _superPropGet(t, o, e, r) { var p = (0, _get2.default)((0, _getPrototypeOf2.default)(1 & r ? t.prototype : t), o, e); return 2 & r && "function" == typeof p ? function (t) { return p.apply(e, t); } : p; } | |
| 303 | +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } | |
| 304 | +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } | |
| 274 | 305 | /* global elementorAdminBarConfig */ |
| 275 | 306 | var AdminBar = /*#__PURE__*/function (_elementorModules$Vie) { |
| 307 | + (0, _inherits2.default)(AdminBar, _elementorModules$Vie); | |
| 308 | + var _super = _createSuper(AdminBar); | |
| 276 | 309 | function AdminBar() { |
| 277 | 310 | (0, _classCallCheck2.default)(this, AdminBar); |
| 278 | - return _callSuper(this, AdminBar, arguments); | |
| 311 | + return _super.apply(this, arguments); | |
| 279 | 312 | } |
| 280 | - (0, _inherits2.default)(AdminBar, _elementorModules$Vie); | |
| 281 | - return (0, _createClass2.default)(AdminBar, [{ | |
| 313 | + (0, _createClass2.default)(AdminBar, [{ | |
| 282 | 314 | key: "getDefaultSettings", |
| 283 | 315 | value: |
| 284 | 316 | /** |
| 285 | 317 | * @return {{}} settings |
| @@ -327,9 +359,9 @@ | ||
| 327 | 359 | */ |
| 328 | 360 | }, { |
| 329 | 361 | key: "onInit", |
| 330 | 362 | value: function onInit() { |
| 331 | - _superPropGet(AdminBar, "onInit", this, 3)([]); | |
| 363 | + (0, _get2.default)((0, _getPrototypeOf2.default)(AdminBar.prototype), "onInit", this).call(this); | |
| 332 | 364 | this.createMenu(elementorAdminBarConfig); |
| 333 | 365 | } |
| 334 | 366 | |
| 335 | 367 | /** |
| @@ -416,8 +448,9 @@ | ||
| 416 | 448 | class: this.getSettings('classes.adminBarSubItemsWrapper') |
| 417 | 449 | }).append($list); |
| 418 | 450 | } |
| 419 | 451 | }]); |
| 452 | + return AdminBar; | |
| 420 | 453 | }(elementorModules.ViewModule); |
| 421 | 454 | document.addEventListener('DOMContentLoaded', function () { |
| 422 | 455 | return new AdminBar(); |
| 423 | 456 | }); |