PluginProbe
Elementor Website Builder – more than just a page builder / 3.0.7
Elementor Website Builder – more than just a page builder v3.0.7
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / assets / js / admin.js

admin.js in Elementor Website Builder – more than just a page builder 3.0.7, at assets/js/admin.js

1,792 lines 56.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*! elementor - v3.0.7 - 09-09-2020 */
2 /******/ (function(modules) { // webpackBootstrap
3 /******/ // The module cache
4 /******/ var installedModules = {};
5 /******/
6 /******/ // The require function
7 /******/ function __webpack_require__(moduleId) {
8 /******/
9 /******/ // Check if module is in cache
10 /******/ if(installedModules[moduleId]) {
11 /******/ return installedModules[moduleId].exports;
12 /******/ }
13 /******/ // Create a new module (and put it into the cache)
14 /******/ var module = installedModules[moduleId] = {
15 /******/ i: moduleId,
16 /******/ l: false,
17 /******/ exports: {}
18 /******/ };
19 /******/
20 /******/ // Execute the module function
21 /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
22 /******/
23 /******/ // Flag the module as loaded
24 /******/ module.l = true;
25 /******/
26 /******/ // Return the exports of the module
27 /******/ return module.exports;
28 /******/ }
29 /******/
30 /******/
31 /******/ // expose the modules object (__webpack_modules__)
32 /******/ __webpack_require__.m = modules;
33 /******/
34 /******/ // expose the module cache
35 /******/ __webpack_require__.c = installedModules;
36 /******/
37 /******/ // define getter function for harmony exports
38 /******/ __webpack_require__.d = function(exports, name, getter) {
39 /******/ if(!__webpack_require__.o(exports, name)) {
40 /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
41 /******/ }
42 /******/ };
43 /******/
44 /******/ // define __esModule on exports
45 /******/ __webpack_require__.r = function(exports) {
46 /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
47 /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
48 /******/ }
49 /******/ Object.defineProperty(exports, '__esModule', { value: true });
50 /******/ };
51 /******/
52 /******/ // create a fake namespace object
53 /******/ // mode & 1: value is a module id, require it
54 /******/ // mode & 2: merge all properties of value into the ns
55 /******/ // mode & 4: return value when already ns object
56 /******/ // mode & 8|1: behave like require
57 /******/ __webpack_require__.t = function(value, mode) {
58 /******/ if(mode & 1) value = __webpack_require__(value);
59 /******/ if(mode & 8) return value;
60 /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
61 /******/ var ns = Object.create(null);
62 /******/ __webpack_require__.r(ns);
63 /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
64 /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
65 /******/ return ns;
66 /******/ };
67 /******/
68 /******/ // getDefaultExport function for compatibility with non-harmony modules
69 /******/ __webpack_require__.n = function(module) {
70 /******/ var getter = module && module.__esModule ?
71 /******/ function getDefault() { return module['default']; } :
72 /******/ function getModuleExports() { return module; };
73 /******/ __webpack_require__.d(getter, 'a', getter);
74 /******/ return getter;
75 /******/ };
76 /******/
77 /******/ // Object.prototype.hasOwnProperty.call
78 /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
79 /******/
80 /******/ // __webpack_public_path__
81 /******/ __webpack_require__.p = "";
82 /******/
83 /******/
84 /******/ // Load entry module and return exports
85 /******/ return __webpack_require__(__webpack_require__.s = 712);
86 /******/ })
87 /************************************************************************/
88 /******/ ({
89
90 /***/ 103:
91 /***/ (function(module, exports) {
92
93 module.exports = function (bitmap, value) {
94 return {
95 enumerable: !(bitmap & 1),
96 configurable: !(bitmap & 2),
97 writable: !(bitmap & 4),
98 value: value
99 };
100 };
101
102
103 /***/ }),
104
105 /***/ 105:
106 /***/ (function(module, exports, __webpack_require__) {
107
108 "use strict";
109
110 var at = __webpack_require__(144)(true);
111
112 // `AdvanceStringIndex` abstract operation
113 // https://tc39.github.io/ecma262/#sec-advancestringindex
114 module.exports = function (S, index, unicode) {
115 return index + (unicode ? at(S, index).length : 1);
116 };
117
118
119 /***/ }),
120
121 /***/ 106:
122 /***/ (function(module, exports, __webpack_require__) {
123
124 "use strict";
125
126 // 21.2.5.3 get RegExp.prototype.flags
127 var anObject = __webpack_require__(18);
128 module.exports = function () {
129 var that = anObject(this);
130 var result = '';
131 if (that.global) result += 'g';
132 if (that.ignoreCase) result += 'i';
133 if (that.multiline) result += 'm';
134 if (that.unicode) result += 'u';
135 if (that.sticky) result += 'y';
136 return result;
137 };
138
139
140 /***/ }),
141
142 /***/ 109:
143 /***/ (function(module, exports, __webpack_require__) {
144
145 var isObject = __webpack_require__(30);
146 var document = __webpack_require__(17).document;
147 // typeof document.createElement is 'object' in old IE
148 var is = isObject(document) && isObject(document.createElement);
149 module.exports = function (it) {
150 return is ? document.createElement(it) : {};
151 };
152
153
154 /***/ }),
155
156 /***/ 110:
157 /***/ (function(module, exports) {
158
159 module.exports = false;
160
161
162 /***/ }),
163
164 /***/ 113:
165 /***/ (function(module, exports, __webpack_require__) {
166
167 // getting tag from 19.1.3.6 Object.prototype.toString()
168 var cof = __webpack_require__(46);
169 var TAG = __webpack_require__(12)('toStringTag');
170 // ES3 wrong here
171 var ARG = cof(function () { return arguments; }()) == 'Arguments';
172
173 // fallback for IE11 Script Access Denied error
174 var tryGet = function (it, key) {
175 try {
176 return it[key];
177 } catch (e) { /* empty */ }
178 };
179
180 module.exports = function (it) {
181 var O, T, B;
182 return it === undefined ? 'Undefined' : it === null ? 'Null'
183 // @@toStringTag case
184 : typeof (T = tryGet(O = Object(it), TAG)) == 'string' ? T
185 // builtinTag case
186 : ARG ? cof(O)
187 // ES3 arguments fallback
188 : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;
189 };
190
191
192 /***/ }),
193
194 /***/ 12:
195 /***/ (function(module, exports, __webpack_require__) {
196
197 var store = __webpack_require__(67)('wks');
198 var uid = __webpack_require__(68);
199 var Symbol = __webpack_require__(17).Symbol;
200 var USE_SYMBOL = typeof Symbol == 'function';
201
202 var $exports = module.exports = function (name) {
203 return store[name] || (store[name] =
204 USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));
205 };
206
207 $exports.store = store;
208
209
210 /***/ }),
211
212 /***/ 120:
213 /***/ (function(module, exports, __webpack_require__) {
214
215 // fallback for non-array-like ES3 and non-enumerable old V8 strings
216 var cof = __webpack_require__(46);
217 // eslint-disable-next-line no-prototype-builtins
218 module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
219 return cof(it) == 'String' ? it.split('') : Object(it);
220 };
221
222
223 /***/ }),
224
225 /***/ 122:
226 /***/ (function(module, exports, __webpack_require__) {
227
228 // 7.2.8 IsRegExp(argument)
229 var isObject = __webpack_require__(30);
230 var cof = __webpack_require__(46);
231 var MATCH = __webpack_require__(12)('match');
232 module.exports = function (it) {
233 var isRegExp;
234 return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp');
235 };
236
237
238 /***/ }),
239
240 /***/ 123:
241 /***/ (function(module, exports, __webpack_require__) {
242
243 // 7.1.1 ToPrimitive(input [, PreferredType])
244 var isObject = __webpack_require__(30);
245 // instead of the ES6 spec version, we didn't implement @@toPrimitive case
246 // and the second argument - flag - preferred type is a string
247 module.exports = function (it, S) {
248 if (!isObject(it)) return it;
249 var fn, val;
250 if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;
251 if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;
252 if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;
253 throw TypeError("Can't convert object to primitive value");
254 };
255
256
257 /***/ }),
258
259 /***/ 129:
260 /***/ (function(module, exports, __webpack_require__) {
261
262 module.exports = !__webpack_require__(27) && !__webpack_require__(33)(function () {
263 return Object.defineProperty(__webpack_require__(109)('div'), 'a', { get: function () { return 7; } }).a != 7;
264 });
265
266
267 /***/ }),
268
269 /***/ 144:
270 /***/ (function(module, exports, __webpack_require__) {
271
272 var toInteger = __webpack_require__(57);
273 var defined = __webpack_require__(42);
274 // true -> String#at
275 // false -> String#codePointAt
276 module.exports = function (TO_STRING) {
277 return function (that, pos) {
278 var s = String(defined(that));
279 var i = toInteger(pos);
280 var l = s.length;
281 var a, b;
282 if (i < 0 || i >= l) return TO_STRING ? '' : undefined;
283 a = s.charCodeAt(i);
284 return a < 0xd800 || a > 0xdbff || i + 1 === l || (b = s.charCodeAt(i + 1)) < 0xdc00 || b > 0xdfff
285 ? TO_STRING ? s.charAt(i) : a
286 : TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;
287 };
288 };
289
290
291 /***/ }),
292
293 /***/ 145:
294 /***/ (function(module, exports, __webpack_require__) {
295
296 module.exports = __webpack_require__(67)('native-function-to-string', Function.toString);
297
298
299 /***/ }),
300
301 /***/ 154:
302 /***/ (function(module, exports, __webpack_require__) {
303
304 // 7.3.20 SpeciesConstructor(O, defaultConstructor)
305 var anObject = __webpack_require__(18);
306 var aFunction = __webpack_require__(91);
307 var SPECIES = __webpack_require__(12)('species');
308 module.exports = function (O, D) {
309 var C = anObject(O).constructor;
310 var S;
311 return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? D : aFunction(S);
312 };
313
314
315 /***/ }),
316
317 /***/ 17:
318 /***/ (function(module, exports) {
319
320 // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
321 var global = module.exports = typeof window != 'undefined' && window.Math == Math
322 ? window : typeof self != 'undefined' && self.Math == Math ? self
323 // eslint-disable-next-line no-new-func
324 : Function('return this')();
325 if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef
326
327
328 /***/ }),
329
330 /***/ 18:
331 /***/ (function(module, exports, __webpack_require__) {
332
333 var isObject = __webpack_require__(30);
334 module.exports = function (it) {
335 if (!isObject(it)) throw TypeError(it + ' is not an object!');
336 return it;
337 };
338
339
340 /***/ }),
341
342 /***/ 182:
343 /***/ (function(module, exports, __webpack_require__) {
344
345 // 0 -> Array#forEach
346 // 1 -> Array#map
347 // 2 -> Array#filter
348 // 3 -> Array#some
349 // 4 -> Array#every
350 // 5 -> Array#find
351 // 6 -> Array#findIndex
352 var ctx = __webpack_require__(73);
353 var IObject = __webpack_require__(120);
354 var toObject = __webpack_require__(96);
355 var toLength = __webpack_require__(43);
356 var asc = __webpack_require__(216);
357 module.exports = function (TYPE, $create) {
358 var IS_MAP = TYPE == 1;
359 var IS_FILTER = TYPE == 2;
360 var IS_SOME = TYPE == 3;
361 var IS_EVERY = TYPE == 4;
362 var IS_FIND_INDEX = TYPE == 6;
363 var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;
364 var create = $create || asc;
365 return function ($this, callbackfn, that) {
366 var O = toObject($this);
367 var self = IObject(O);
368 var f = ctx(callbackfn, that, 3);
369 var length = toLength(self.length);
370 var index = 0;
371 var result = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;
372 var val, res;
373 for (;length > index; index++) if (NO_HOLES || index in self) {
374 val = self[index];
375 res = f(val, index, O);
376 if (TYPE) {
377 if (IS_MAP) result[index] = res; // map
378 else if (res) switch (TYPE) {
379 case 3: return true; // some
380 case 5: return val; // find
381 case 6: return index; // findIndex
382 case 2: result.push(val); // filter
383 } else if (IS_EVERY) return false; // every
384 }
385 }
386 return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result;
387 };
388 };
389
390
391 /***/ }),
392
393 /***/ 190:
394 /***/ (function(module, exports, __webpack_require__) {
395
396 "use strict";
397
398 var regexpExec = __webpack_require__(90);
399 __webpack_require__(34)({
400 target: 'RegExp',
401 proto: true,
402 forced: regexpExec !== /./.exec
403 }, {
404 exec: regexpExec
405 });
406
407
408 /***/ }),
409
410 /***/ 216:
411 /***/ (function(module, exports, __webpack_require__) {
412
413 // 9.4.2.3 ArraySpeciesCreate(originalArray, length)
414 var speciesConstructor = __webpack_require__(217);
415
416 module.exports = function (original, length) {
417 return new (speciesConstructor(original))(length);
418 };
419
420
421 /***/ }),
422
423 /***/ 217:
424 /***/ (function(module, exports, __webpack_require__) {
425
426 var isObject = __webpack_require__(30);
427 var isArray = __webpack_require__(218);
428 var SPECIES = __webpack_require__(12)('species');
429
430 module.exports = function (original) {
431 var C;
432 if (isArray(original)) {
433 C = original.constructor;
434 // cross-realm fallback
435 if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;
436 if (isObject(C)) {
437 C = C[SPECIES];
438 if (C === null) C = undefined;
439 }
440 } return C === undefined ? Array : C;
441 };
442
443
444 /***/ }),
445
446 /***/ 218:
447 /***/ (function(module, exports, __webpack_require__) {
448
449 // 7.2.2 IsArray(argument)
450 var cof = __webpack_require__(46);
451 module.exports = Array.isArray || function isArray(arg) {
452 return cof(arg) == 'Array';
453 };
454
455
456 /***/ }),
457
458 /***/ 25:
459 /***/ (function(module, exports, __webpack_require__) {
460
461 "use strict";
462
463 // 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined)
464 var $export = __webpack_require__(34);
465 var $find = __webpack_require__(182)(5);
466 var KEY = 'find';
467 var forced = true;
468 // Shouldn't skip holes
469 if (KEY in []) Array(1)[KEY](function () { forced = false; });
470 $export($export.P + $export.F * forced, 'Array', {
471 find: function find(callbackfn /* , that = undefined */) {
472 return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
473 }
474 });
475 __webpack_require__(87)(KEY);
476
477
478 /***/ }),
479
480 /***/ 27:
481 /***/ (function(module, exports, __webpack_require__) {
482
483 // Thank's IE8 for his funny defineProperty
484 module.exports = !__webpack_require__(33)(function () {
485 return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
486 });
487
488
489 /***/ }),
490
491 /***/ 29:
492 /***/ (function(module, exports, __webpack_require__) {
493
494 var dP = __webpack_require__(45);
495 var createDesc = __webpack_require__(103);
496 module.exports = __webpack_require__(27) ? function (object, key, value) {
497 return dP.f(object, key, createDesc(1, value));
498 } : function (object, key, value) {
499 object[key] = value;
500 return object;
501 };
502
503
504 /***/ }),
505
506 /***/ 30:
507 /***/ (function(module, exports) {
508
509 module.exports = function (it) {
510 return typeof it === 'object' ? it !== null : typeof it === 'function';
511 };
512
513
514 /***/ }),
515
516 /***/ 33:
517 /***/ (function(module, exports) {
518
519 module.exports = function (exec) {
520 try {
521 return !!exec();
522 } catch (e) {
523 return true;
524 }
525 };
526
527
528 /***/ }),
529
530 /***/ 334:
531 /***/ (function(module, exports, __webpack_require__) {
532
533 "use strict";
534
535
536 var anObject = __webpack_require__(18);
537 var sameValue = __webpack_require__(386);
538 var regExpExec = __webpack_require__(94);
539
540 // @@search logic
541 __webpack_require__(95)('search', 1, function (defined, SEARCH, $search, maybeCallNative) {
542 return [
543 // `String.prototype.search` method
544 // https://tc39.github.io/ecma262/#sec-string.prototype.search
545 function search(regexp) {
546 var O = defined(this);
547 var fn = regexp == undefined ? undefined : regexp[SEARCH];
548 return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O));
549 },
550 // `RegExp.prototype[@@search]` method
551 // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@search
552 function (regexp) {
553 var res = maybeCallNative($search, regexp, this);
554 if (res.done) return res.value;
555 var rx = anObject(regexp);
556 var S = String(this);
557 var previousLastIndex = rx.lastIndex;
558 if (!sameValue(previousLastIndex, 0)) rx.lastIndex = 0;
559 var result = regExpExec(rx, S);
560 if (!sameValue(rx.lastIndex, previousLastIndex)) rx.lastIndex = previousLastIndex;
561 return result === null ? -1 : result.index;
562 }
563 ];
564 });
565
566
567 /***/ }),
568
569 /***/ 34:
570 /***/ (function(module, exports, __webpack_require__) {
571
572 var global = __webpack_require__(17);
573 var core = __webpack_require__(54);
574 var hide = __webpack_require__(29);
575 var redefine = __webpack_require__(37);
576 var ctx = __webpack_require__(73);
577 var PROTOTYPE = 'prototype';
578
579 var $export = function (type, name, source) {
580 var IS_FORCED = type & $export.F;
581 var IS_GLOBAL = type & $export.G;
582 var IS_STATIC = type & $export.S;
583 var IS_PROTO = type & $export.P;
584 var IS_BIND = type & $export.B;
585 var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];
586 var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});
587 var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});
588 var key, own, out, exp;
589 if (IS_GLOBAL) source = name;
590 for (key in source) {
591 // contains in native
592 own = !IS_FORCED && target && target[key] !== undefined;
593 // export native or passed
594 out = (own ? target : source)[key];
595 // bind timers to global for call from export context
596 exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;
597 // extend global
598 if (target) redefine(target, key, out, type & $export.U);
599 // export
600 if (exports[key] != out) hide(exports, key, exp);
601 if (IS_PROTO && expProto[key] != out) expProto[key] = out;
602 }
603 };
604 global.core = core;
605 // type bitmap
606 $export.F = 1; // forced
607 $export.G = 2; // global
608 $export.S = 4; // static
609 $export.P = 8; // proto
610 $export.B = 16; // bind
611 $export.W = 32; // wrap
612 $export.U = 64; // safe
613 $export.R = 128; // real proto method for `library`
614 module.exports = $export;
615
616
617 /***/ }),
618
619 /***/ 37:
620 /***/ (function(module, exports, __webpack_require__) {
621
622 var global = __webpack_require__(17);
623 var hide = __webpack_require__(29);
624 var has = __webpack_require__(61);
625 var SRC = __webpack_require__(68)('src');
626 var $toString = __webpack_require__(145);
627 var TO_STRING = 'toString';
628 var TPL = ('' + $toString).split(TO_STRING);
629
630 __webpack_require__(54).inspectSource = function (it) {
631 return $toString.call(it);
632 };
633
634 (module.exports = function (O, key, val, safe) {
635 var isFunction = typeof val == 'function';
636 if (isFunction) has(val, 'name') || hide(val, 'name', key);
637 if (O[key] === val) return;
638 if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));
639 if (O === global) {
640 O[key] = val;
641 } else if (!safe) {
642 delete O[key];
643 hide(O, key, val);
644 } else if (O[key]) {
645 O[key] = val;
646 } else {
647 hide(O, key, val);
648 }
649 // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
650 })(Function.prototype, TO_STRING, function toString() {
651 return typeof this == 'function' && this[SRC] || $toString.call(this);
652 });
653
654
655 /***/ }),
656
657 /***/ 386:
658 /***/ (function(module, exports) {
659
660 // 7.2.9 SameValue(x, y)
661 module.exports = Object.is || function is(x, y) {
662 // eslint-disable-next-line no-self-compare
663 return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
664 };
665
666
667 /***/ }),
668
669 /***/ 42:
670 /***/ (function(module, exports) {
671
672 // 7.2.1 RequireObjectCoercible(argument)
673 module.exports = function (it) {
674 if (it == undefined) throw TypeError("Can't call method on " + it);
675 return it;
676 };
677
678
679 /***/ }),
680
681 /***/ 43:
682 /***/ (function(module, exports, __webpack_require__) {
683
684 // 7.1.15 ToLength
685 var toInteger = __webpack_require__(57);
686 var min = Math.min;
687 module.exports = function (it) {
688 return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991
689 };
690
691
692 /***/ }),
693
694 /***/ 45:
695 /***/ (function(module, exports, __webpack_require__) {
696
697 var anObject = __webpack_require__(18);
698 var IE8_DOM_DEFINE = __webpack_require__(129);
699 var toPrimitive = __webpack_require__(123);
700 var dP = Object.defineProperty;
701
702 exports.f = __webpack_require__(27) ? Object.defineProperty : function defineProperty(O, P, Attributes) {
703 anObject(O);
704 P = toPrimitive(P, true);
705 anObject(Attributes);
706 if (IE8_DOM_DEFINE) try {
707 return dP(O, P, Attributes);
708 } catch (e) { /* empty */ }
709 if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
710 if ('value' in Attributes) O[P] = Attributes.value;
711 return O;
712 };
713
714
715 /***/ }),
716
717 /***/ 46:
718 /***/ (function(module, exports) {
719
720 var toString = {}.toString;
721
722 module.exports = function (it) {
723 return toString.call(it).slice(8, -1);
724 };
725
726
727 /***/ }),
728
729 /***/ 54:
730 /***/ (function(module, exports) {
731
732 var core = module.exports = { version: '2.6.11' };
733 if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef
734
735
736 /***/ }),
737
738 /***/ 57:
739 /***/ (function(module, exports) {
740
741 // 7.1.4 ToInteger
742 var ceil = Math.ceil;
743 var floor = Math.floor;
744 module.exports = function (it) {
745 return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);
746 };
747
748
749 /***/ }),
750
751 /***/ 58:
752 /***/ (function(module, exports, __webpack_require__) {
753
754 "use strict";
755
756
757 var anObject = __webpack_require__(18);
758 var toObject = __webpack_require__(96);
759 var toLength = __webpack_require__(43);
760 var toInteger = __webpack_require__(57);
761 var advanceStringIndex = __webpack_require__(105);
762 var regExpExec = __webpack_require__(94);
763 var max = Math.max;
764 var min = Math.min;
765 var floor = Math.floor;
766 var SUBSTITUTION_SYMBOLS = /\$([$&`']|\d\d?|<[^>]*>)/g;
767 var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&`']|\d\d?)/g;
768
769 var maybeToString = function (it) {
770 return it === undefined ? it : String(it);
771 };
772
773 // @@replace logic
774 __webpack_require__(95)('replace', 2, function (defined, REPLACE, $replace, maybeCallNative) {
775 return [
776 // `String.prototype.replace` method
777 // https://tc39.github.io/ecma262/#sec-string.prototype.replace
778 function replace(searchValue, replaceValue) {
779 var O = defined(this);
780 var fn = searchValue == undefined ? undefined : searchValue[REPLACE];
781 return fn !== undefined
782 ? fn.call(searchValue, O, replaceValue)
783 : $replace.call(String(O), searchValue, replaceValue);
784 },
785 // `RegExp.prototype[@@replace]` method
786 // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace
787 function (regexp, replaceValue) {
788 var res = maybeCallNative($replace, regexp, this, replaceValue);
789 if (res.done) return res.value;
790
791 var rx = anObject(regexp);
792 var S = String(this);
793 var functionalReplace = typeof replaceValue === 'function';
794 if (!functionalReplace) replaceValue = String(replaceValue);
795 var global = rx.global;
796 if (global) {
797 var fullUnicode = rx.unicode;
798 rx.lastIndex = 0;
799 }
800 var results = [];
801 while (true) {
802 var result = regExpExec(rx, S);
803 if (result === null) break;
804 results.push(result);
805 if (!global) break;
806 var matchStr = String(result[0]);
807 if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
808 }
809 var accumulatedResult = '';
810 var nextSourcePosition = 0;
811 for (var i = 0; i < results.length; i++) {
812 result = results[i];
813 var matched = String(result[0]);
814 var position = max(min(toInteger(result.index), S.length), 0);
815 var captures = [];
816 // NOTE: This is equivalent to
817 // captures = result.slice(1).map(maybeToString)
818 // but for some reason `nativeSlice.call(result, 1, result.length)` (called in
819 // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and
820 // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.
821 for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));
822 var namedCaptures = result.groups;
823 if (functionalReplace) {
824 var replacerArgs = [matched].concat(captures, position, S);
825 if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);
826 var replacement = String(replaceValue.apply(undefined, replacerArgs));
827 } else {
828 replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
829 }
830 if (position >= nextSourcePosition) {
831 accumulatedResult += S.slice(nextSourcePosition, position) + replacement;
832 nextSourcePosition = position + matched.length;
833 }
834 }
835 return accumulatedResult + S.slice(nextSourcePosition);
836 }
837 ];
838
839 // https://tc39.github.io/ecma262/#sec-getsubstitution
840 function getSubstitution(matched, str, position, captures, namedCaptures, replacement) {
841 var tailPos = position + matched.length;
842 var m = captures.length;
843 var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
844 if (namedCaptures !== undefined) {
845 namedCaptures = toObject(namedCaptures);
846 symbols = SUBSTITUTION_SYMBOLS;
847 }
848 return $replace.call(replacement, symbols, function (match, ch) {
849 var capture;
850 switch (ch.charAt(0)) {
851 case '$': return '$';
852 case '&': return matched;
853 case '`': return str.slice(0, position);
854 case "'": return str.slice(tailPos);
855 case '<':
856 capture = namedCaptures[ch.slice(1, -1)];
857 break;
858 default: // \d\d?
859 var n = +ch;
860 if (n === 0) return match;
861 if (n > m) {
862 var f = floor(n / 10);
863 if (f === 0) return match;
864 if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);
865 return match;
866 }
867 capture = captures[n - 1];
868 }
869 return capture === undefined ? '' : capture;
870 });
871 }
872 });
873
874
875 /***/ }),
876
877 /***/ 61:
878 /***/ (function(module, exports) {
879
880 var hasOwnProperty = {}.hasOwnProperty;
881 module.exports = function (it, key) {
882 return hasOwnProperty.call(it, key);
883 };
884
885
886 /***/ }),
887
888 /***/ 67:
889 /***/ (function(module, exports, __webpack_require__) {
890
891 var core = __webpack_require__(54);
892 var global = __webpack_require__(17);
893 var SHARED = '__core-js_shared__';
894 var store = global[SHARED] || (global[SHARED] = {});
895
896 (module.exports = function (key, value) {
897 return store[key] || (store[key] = value !== undefined ? value : {});
898 })('versions', []).push({
899 version: core.version,
900 mode: __webpack_require__(110) ? 'pure' : 'global',
901 copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
902 });
903
904
905 /***/ }),
906
907 /***/ 68:
908 /***/ (function(module, exports) {
909
910 var id = 0;
911 var px = Math.random();
912 module.exports = function (key) {
913 return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));
914 };
915
916
917 /***/ }),
918
919 /***/ 712:
920 /***/ (function(module, exports, __webpack_require__) {
921
922 "use strict";
923
924
925 __webpack_require__(58);
926
927 __webpack_require__(334);
928
929 __webpack_require__(80);
930
931 __webpack_require__(25);
932
933 (function ($) {
934 var ElementorAdmin = elementorModules.ViewModule.extend({
935 maintenanceMode: null,
936 config: elementorAdminConfig,
937 getDefaultElements: function getDefaultElements() {
938 var elements = {
939 $switchMode: $('#elementor-switch-mode'),
940 $goToEditLink: $('#elementor-go-to-edit-page-link'),
941 $switchModeInput: $('#elementor-switch-mode-input'),
942 $switchModeButton: $('#elementor-switch-mode-button'),
943 $elementorLoader: $('.elementor-loader'),
944 $builderEditor: $('#elementor-editor'),
945 $importButton: $('#elementor-import-template-trigger'),
946 $importArea: $('#elementor-import-template-area'),
947 $settingsForm: $('#elementor-settings-form'),
948 $settingsTabsWrapper: $('#elementor-settings-tabs-wrapper'),
949 $menuGetHelpLink: $('a[href="admin.php?page=go_knowledge_base_site"]'),
950 $reMigrateGlobalsButton: $('.elementor-re-migrate-globals-button')
951 };
952 elements.$settingsFormPages = elements.$settingsForm.find('.elementor-settings-form-page');
953 elements.$activeSettingsPage = elements.$settingsFormPages.filter('.elementor-active');
954 elements.$settingsTabs = elements.$settingsTabsWrapper.children();
955 elements.$activeSettingsTab = elements.$settingsTabs.filter('.nav-tab-active');
956 return elements;
957 },
958 toggleStatus: function toggleStatus() {
959 var isElementorMode = this.isElementorMode();
960 elementorCommon.elements.$body.toggleClass('elementor-editor-active', isElementorMode).toggleClass('elementor-editor-inactive', !isElementorMode);
961 },
962 bindEvents: function bindEvents() {
963 var self = this;
964 self.elements.$switchModeButton.on('click', function (event) {
965 event.preventDefault();
966
967 if (self.isElementorMode()) {
968 elementorCommon.dialogsManager.createWidget('confirm', {
969 message: self.translate('back_to_wordpress_editor_message'),
970 headerMessage: self.translate('back_to_wordpress_editor_header'),
971 strings: {
972 confirm: self.translate('yes'),
973 cancel: self.translate('cancel')
974 },
975 defaultOption: 'confirm',
976 onConfirm: function onConfirm() {
977 self.elements.$switchModeInput.val('');
978 self.toggleStatus();
979 }
980 }).show();
981 } else {
982 self.elements.$switchModeInput.val(true);
983 var $wpTitle = $('#title');
984
985 if (!$wpTitle.val()) {
986 $wpTitle.val('Elementor #' + $('#post_ID').val());
987 }
988
989 if (wp.autosave) {
990 wp.autosave.server.triggerSave();
991 }
992
993 self.animateLoader();
994 $(document).on('heartbeat-tick.autosave', function () {
995 elementorCommon.elements.$window.off('beforeunload.edit-post');
996 location.href = self.elements.$goToEditLink.attr('href');
997 });
998 self.toggleStatus();
999 }
1000 });
1001 self.elements.$goToEditLink.on('click', function () {
1002 self.animateLoader();
1003 });
1004 $('div.notice.elementor-message-dismissed').on('click', 'button.notice-dismiss, .elementor-button-notice-dismiss', function (event) {
1005 event.preventDefault();
1006 $.post(ajaxurl, {
1007 action: 'elementor_set_admin_notice_viewed',
1008 notice_id: $(this).closest('.elementor-message-dismissed').data('notice_id')
1009 });
1010 var $wrapperElm = $(this).closest('.elementor-message-dismissed');
1011 $wrapperElm.fadeTo(100, 0, function () {
1012 $wrapperElm.slideUp(100, function () {
1013 $wrapperElm.remove();
1014 });
1015 });
1016 });
1017 $('#elementor-clear-cache-button').on('click', function (event) {
1018 event.preventDefault();
1019 var $thisButton = $(this);
1020 $thisButton.removeClass('success').addClass('loading');
1021 $.post(ajaxurl, {
1022 action: 'elementor_clear_cache',
1023 _nonce: $thisButton.data('nonce')
1024 }).done(function () {
1025 $thisButton.removeClass('loading').addClass('success');
1026 });
1027 });
1028 $('#elementor-library-sync-button').on('click', function (event) {
1029 event.preventDefault();
1030 var $thisButton = $(this);
1031 $thisButton.removeClass('success').addClass('loading');
1032 $.post(ajaxurl, {
1033 action: 'elementor_reset_library',
1034 _nonce: $thisButton.data('nonce')
1035 }).done(function () {
1036 $thisButton.removeClass('loading').addClass('success');
1037 });
1038 });
1039 $('#elementor-replace-url-button').on('click', function (event) {
1040 event.preventDefault();
1041 var $this = $(this),
1042 $tr = $this.parents('tr'),
1043 $from = $tr.find('[name="from"]'),
1044 $to = $tr.find('[name="to"]');
1045 $this.removeClass('success').addClass('loading');
1046 $.post(ajaxurl, {
1047 action: 'elementor_replace_url',
1048 from: $from.val(),
1049 to: $to.val(),
1050 _nonce: $this.data('nonce')
1051 }).done(function (response) {
1052 $this.removeClass('loading');
1053
1054 if (response.success) {
1055 $this.addClass('success');
1056 }
1057
1058 elementorCommon.dialogsManager.createWidget('alert', {
1059 message: response.data
1060 }).show();
1061 });
1062 });
1063 $('#elementor_upgrade_fa_button').on('click', function (event) {
1064 event.preventDefault();
1065 var $updateButton = $(this);
1066 $updateButton.addClass('loading');
1067 elementorCommon.dialogsManager.createWidget('confirm', {
1068 id: 'confirm_fa_migration_admin_modal',
1069 message: self.translate('confirm_fa_migration_admin_modal_body'),
1070 headerMessage: self.translate('confirm_fa_migration_admin_modal_head'),
1071 strings: {
1072 confirm: self.translate('yes'),
1073 cancel: self.translate('cancel')
1074 },
1075 defaultOption: 'confirm',
1076 onConfirm: function onConfirm() {
1077 $updateButton.removeClass('error').addClass('loading');
1078 $.post(ajaxurl, $updateButton.data()).done(function (response) {
1079 $updateButton.removeClass('loading').addClass('success');
1080 $('#elementor_upgrade_fa_button').parent().append(response.data.message);
1081 var redirectTo = (location.search.split('redirect_to=')[1] || '').split('&')[0];
1082
1083 if (redirectTo) {
1084 location.href = decodeURIComponent(redirectTo);
1085 return;
1086 }
1087
1088 history.go(-1);
1089 }).fail(function () {
1090 $updateButton.removeClass('loading').addClass('error');
1091 });
1092 },
1093 onCancel: function onCancel() {
1094 $updateButton.removeClass('loading').addClass('error');
1095 }
1096 }).show();
1097 });
1098 self.elements.$settingsTabs.on({
1099 click: function click(event) {
1100 event.preventDefault();
1101 event.currentTarget.focus(); // Safari does not focus the tab automatically
1102 },
1103 focus: function focus() {
1104 // Using focus event to enable navigation by tab key
1105 var hrefWithoutHash = location.href.replace(/#.*/, '');
1106 history.pushState({}, '', hrefWithoutHash + this.hash);
1107 self.goToSettingsTabFromHash();
1108 }
1109 });
1110 $('select.elementor-rollback-select').on('change', function () {
1111 var $this = $(this),
1112 $rollbackButton = $this.next('.elementor-rollback-button'),
1113 placeholderText = $rollbackButton.data('placeholder-text'),
1114 placeholderUrl = $rollbackButton.data('placeholder-url');
1115 $rollbackButton.html(placeholderText.replace('{VERSION}', $this.val()));
1116 $rollbackButton.attr('href', placeholderUrl.replace('VERSION', $this.val()));
1117 }).trigger('change');
1118 $('.elementor-rollback-button').on('click', function (event) {
1119 event.preventDefault();
1120 var $this = $(this);
1121 elementorCommon.dialogsManager.createWidget('confirm', {
1122 headerMessage: self.translate('rollback_to_previous_version'),
1123 message: self.translate('rollback_confirm'),
1124 strings: {
1125 confirm: self.translate('yes'),
1126 cancel: self.translate('cancel')
1127 },
1128 onConfirm: function onConfirm() {
1129 $this.addClass('loading');
1130 location.href = $this.attr('href');
1131 }
1132 }).show();
1133 });
1134 self.elements.$reMigrateGlobalsButton.on('click', function (event) {
1135 event.preventDefault();
1136 var $this = $(event.currentTarget);
1137 elementorCommon.dialogsManager.createWidget('confirm', {
1138 headerMessage: self.translate('re_migrate_globals'),
1139 message: self.translate('re_migrate_globals_confirm'),
1140 strings: {
1141 confirm: self.translate('yes'),
1142 cancel: self.translate('cancel')
1143 },
1144 onConfirm: function onConfirm() {
1145 $this.removeClass('success').addClass('loading');
1146 elementorCommon.ajax.addRequest('re_migrate_globals', {
1147 success: function success() {
1148 return $this.removeClass('loading').addClass('success');
1149 }
1150 });
1151 }
1152 }).show();
1153 });
1154 $('.elementor_css_print_method select').on('change', function () {
1155 var $descriptions = $('.elementor-css-print-method-description');
1156 $descriptions.hide();
1157 $descriptions.filter('[data-value="' + $(this).val() + '"]').show();
1158 }).trigger('change');
1159 },
1160 onInit: function onInit() {
1161 elementorModules.ViewModule.prototype.onInit.apply(this, arguments);
1162 this.initTemplatesImport();
1163 this.initMaintenanceMode();
1164 this.goToSettingsTabFromHash();
1165 this.openGetHelpInNewTab();
1166 this.roleManager.init();
1167 },
1168 openGetHelpInNewTab: function openGetHelpInNewTab() {
1169 this.elements.$menuGetHelpLink.attr('target', '_blank');
1170 },
1171 initTemplatesImport: function initTemplatesImport() {
1172 if (!elementorCommon.elements.$body.hasClass('post-type-elementor_library')) {
1173 return;
1174 }
1175
1176 var self = this,
1177 $importButton = self.elements.$importButton,
1178 $importArea = self.elements.$importArea;
1179 self.elements.$formAnchor = $('h1');
1180 $('#wpbody-content').find('.page-title-action:last').after($importButton);
1181 self.elements.$formAnchor.after($importArea);
1182 $importButton.on('click', function () {
1183 $('#elementor-import-template-area').toggle();
1184 });
1185 },
1186 initMaintenanceMode: function initMaintenanceMode() {
1187 var MaintenanceMode = __webpack_require__(713);
1188
1189 this.maintenanceMode = new MaintenanceMode();
1190 },
1191 isElementorMode: function isElementorMode() {
1192 return !!this.elements.$switchModeInput.val();
1193 },
1194 animateLoader: function animateLoader() {
1195 this.elements.$goToEditLink.addClass('elementor-animate');
1196 },
1197 goToSettingsTabFromHash: function goToSettingsTabFromHash() {
1198 var hash = location.hash.slice(1);
1199
1200 if (hash) {
1201 this.goToSettingsTab(hash);
1202 }
1203 },
1204 goToSettingsTab: function goToSettingsTab(tabName) {
1205 var $pages = this.elements.$settingsFormPages;
1206
1207 if (!$pages.length) {
1208 return;
1209 }
1210
1211 var $activePage = $pages.filter('#' + tabName);
1212 this.elements.$activeSettingsPage.removeClass('elementor-active');
1213 this.elements.$activeSettingsTab.removeClass('nav-tab-active');
1214 var $activeTab = this.elements.$settingsTabs.filter('#elementor-settings-' + tabName);
1215 $activePage.addClass('elementor-active');
1216 $activeTab.addClass('nav-tab-active');
1217 this.elements.$settingsForm.attr('action', 'options.php#' + tabName);
1218 this.elements.$activeSettingsPage = $activePage;
1219 this.elements.$activeSettingsTab = $activeTab;
1220 },
1221 translate: function translate(stringKey, templateArgs) {
1222 return elementorCommon.translate(stringKey, null, templateArgs, this.config.i18n);
1223 },
1224 roleManager: {
1225 selectors: {
1226 body: 'elementor-role-manager',
1227 row: '.elementor-role-row',
1228 label: '.elementor-role-label',
1229 excludedIndicator: '.elementor-role-excluded-indicator',
1230 excludedField: 'input[name="elementor_exclude_user_roles[]"]',
1231 controlsContainer: '.elementor-role-controls',
1232 toggleHandle: '.elementor-role-toggle',
1233 arrowUp: 'dashicons-arrow-up',
1234 arrowDown: 'dashicons-arrow-down'
1235 },
1236 toggle: function toggle($trigger) {
1237 var self = this,
1238 $row = $trigger.closest(self.selectors.row),
1239 $toggleHandleIcon = $row.find(self.selectors.toggleHandle).find('.dashicons'),
1240 $controls = $row.find(self.selectors.controlsContainer);
1241 $controls.toggleClass('hidden');
1242
1243 if ($controls.hasClass('hidden')) {
1244 $toggleHandleIcon.removeClass(self.selectors.arrowUp).addClass(self.selectors.arrowDown);
1245 } else {
1246 $toggleHandleIcon.removeClass(self.selectors.arrowDown).addClass(self.selectors.arrowUp);
1247 }
1248
1249 self.updateLabel($row);
1250 },
1251 updateLabel: function updateLabel($row) {
1252 var self = this,
1253 $indicator = $row.find(self.selectors.excludedIndicator),
1254 excluded = $row.find(self.selectors.excludedField).is(':checked');
1255
1256 if (excluded) {
1257 $indicator.html($indicator.data('excluded-label'));
1258 } else {
1259 $indicator.html('');
1260 }
1261
1262 self.setAdvancedState($row, excluded);
1263 },
1264 setAdvancedState: function setAdvancedState($row, state) {
1265 var self = this,
1266 $controls = $row.find('input[type="checkbox"]').not(self.selectors.excludedField);
1267 $controls.each(function (index, input) {
1268 $(input).prop('disabled', state);
1269 });
1270 },
1271 bind: function bind() {
1272 var self = this;
1273 $(document).on('click', self.selectors.label + ',' + self.selectors.toggleHandle, function (event) {
1274 event.stopPropagation();
1275 event.preventDefault();
1276 self.toggle($(this));
1277 }).on('change', self.selectors.excludedField, function () {
1278 self.updateLabel($(this).closest(self.selectors.row));
1279 });
1280 },
1281 init: function init() {
1282 var self = this;
1283
1284 if (!$('body[class*="' + self.selectors.body + '"]').length) {
1285 return;
1286 }
1287
1288 self.bind();
1289 $(self.selectors.row).each(function (index, row) {
1290 self.updateLabel($(row));
1291 });
1292 }
1293 }
1294 });
1295 $(function () {
1296 window.elementorAdmin = new ElementorAdmin();
1297 elementorCommon.elements.$window.trigger('elementor/admin/init');
1298 });
1299 })(jQuery);
1300
1301 /***/ }),
1302
1303 /***/ 713:
1304 /***/ (function(module, exports, __webpack_require__) {
1305
1306 "use strict";
1307
1308
1309 __webpack_require__(25);
1310
1311 module.exports = elementorModules.ViewModule.extend({
1312 getDefaultSettings: function getDefaultSettings() {
1313 return {
1314 selectors: {
1315 modeSelect: '.elementor_maintenance_mode_mode select',
1316 maintenanceModeTable: '#tab-maintenance_mode table',
1317 maintenanceModeDescriptions: '.elementor-maintenance-mode-description',
1318 excludeModeSelect: '.elementor_maintenance_mode_exclude_mode select',
1319 excludeRolesArea: '.elementor_maintenance_mode_exclude_roles',
1320 templateSelect: '.elementor_maintenance_mode_template_id select',
1321 editTemplateButton: '.elementor-edit-template',
1322 maintenanceModeError: '.elementor-maintenance-mode-error'
1323 },
1324 classes: {
1325 isEnabled: 'elementor-maintenance-mode-is-enabled'
1326 }
1327 };
1328 },
1329 getDefaultElements: function getDefaultElements() {
1330 var elements = {},
1331 selectors = this.getSettings('selectors');
1332 elements.$modeSelect = jQuery(selectors.modeSelect);
1333 elements.$maintenanceModeTable = elements.$modeSelect.parents(selectors.maintenanceModeTable);
1334 elements.$excludeModeSelect = elements.$maintenanceModeTable.find(selectors.excludeModeSelect);
1335 elements.$excludeRolesArea = elements.$maintenanceModeTable.find(selectors.excludeRolesArea);
1336 elements.$templateSelect = elements.$maintenanceModeTable.find(selectors.templateSelect);
1337 elements.$editTemplateButton = elements.$maintenanceModeTable.find(selectors.editTemplateButton);
1338 elements.$maintenanceModeDescriptions = elements.$maintenanceModeTable.find(selectors.maintenanceModeDescriptions);
1339 elements.$maintenanceModeError = elements.$maintenanceModeTable.find(selectors.maintenanceModeError);
1340 return elements;
1341 },
1342 handleModeSelectChange: function handleModeSelectChange() {
1343 var settings = this.getSettings(),
1344 elements = this.elements;
1345 elements.$maintenanceModeTable.toggleClass(settings.classes.isEnabled, !!elements.$modeSelect.val());
1346 elements.$maintenanceModeDescriptions.hide();
1347 elements.$maintenanceModeDescriptions.filter('[data-value="' + elements.$modeSelect.val() + '"]').show();
1348 },
1349 handleExcludeModeSelectChange: function handleExcludeModeSelectChange() {
1350 var elements = this.elements;
1351 elements.$excludeRolesArea.toggle('custom' === elements.$excludeModeSelect.val());
1352 },
1353 handleTemplateSelectChange: function handleTemplateSelectChange() {
1354 var elements = this.elements;
1355 var templateID = elements.$templateSelect.val();
1356
1357 if (!templateID) {
1358 elements.$editTemplateButton.hide();
1359 elements.$maintenanceModeError.show();
1360 return;
1361 }
1362
1363 var editUrl = elementorAdmin.config.home_url + '?p=' + templateID + '&elementor';
1364 elements.$editTemplateButton.prop('href', editUrl).show();
1365 elements.$maintenanceModeError.hide();
1366 },
1367 bindEvents: function bindEvents() {
1368 var elements = this.elements;
1369 elements.$modeSelect.on('change', this.handleModeSelectChange.bind(this));
1370 elements.$excludeModeSelect.on('change', this.handleExcludeModeSelectChange.bind(this));
1371 elements.$templateSelect.on('change', this.handleTemplateSelectChange.bind(this));
1372 },
1373 onAdminInit: function onAdminInit() {
1374 this.handleModeSelectChange();
1375 this.handleExcludeModeSelectChange();
1376 this.handleTemplateSelectChange();
1377 },
1378 onInit: function onInit() {
1379 elementorModules.ViewModule.prototype.onInit.apply(this, arguments);
1380 elementorCommon.elements.$window.on('elementor/admin/init', this.onAdminInit);
1381 }
1382 });
1383
1384 /***/ }),
1385
1386 /***/ 73:
1387 /***/ (function(module, exports, __webpack_require__) {
1388
1389 // optional / simple context binding
1390 var aFunction = __webpack_require__(91);
1391 module.exports = function (fn, that, length) {
1392 aFunction(fn);
1393 if (that === undefined) return fn;
1394 switch (length) {
1395 case 1: return function (a) {
1396 return fn.call(that, a);
1397 };
1398 case 2: return function (a, b) {
1399 return fn.call(that, a, b);
1400 };
1401 case 3: return function (a, b, c) {
1402 return fn.call(that, a, b, c);
1403 };
1404 }
1405 return function (/* ...args */) {
1406 return fn.apply(that, arguments);
1407 };
1408 };
1409
1410
1411 /***/ }),
1412
1413 /***/ 80:
1414 /***/ (function(module, exports, __webpack_require__) {
1415
1416 "use strict";
1417
1418
1419 var isRegExp = __webpack_require__(122);
1420 var anObject = __webpack_require__(18);
1421 var speciesConstructor = __webpack_require__(154);
1422 var advanceStringIndex = __webpack_require__(105);
1423 var toLength = __webpack_require__(43);
1424 var callRegExpExec = __webpack_require__(94);
1425 var regexpExec = __webpack_require__(90);
1426 var fails = __webpack_require__(33);
1427 var $min = Math.min;
1428 var $push = [].push;
1429 var $SPLIT = 'split';
1430 var LENGTH = 'length';
1431 var LAST_INDEX = 'lastIndex';
1432 var MAX_UINT32 = 0xffffffff;
1433
1434 // babel-minify transpiles RegExp('x', 'y') -> /x/y and it causes SyntaxError
1435 var SUPPORTS_Y = !fails(function () { RegExp(MAX_UINT32, 'y'); });
1436
1437 // @@split logic
1438 __webpack_require__(95)('split', 2, function (defined, SPLIT, $split, maybeCallNative) {
1439 var internalSplit;
1440 if (
1441 'abbc'[$SPLIT](/(b)*/)[1] == 'c' ||
1442 'test'[$SPLIT](/(?:)/, -1)[LENGTH] != 4 ||
1443 'ab'[$SPLIT](/(?:ab)*/)[LENGTH] != 2 ||
1444 '.'[$SPLIT](/(.?)(.?)/)[LENGTH] != 4 ||
1445 '.'[$SPLIT](/()()/)[LENGTH] > 1 ||
1446 ''[$SPLIT](/.?/)[LENGTH]
1447 ) {
1448 // based on es5-shim implementation, need to rework it
1449 internalSplit = function (separator, limit) {
1450 var string = String(this);
1451 if (separator === undefined && limit === 0) return [];
1452 // If `separator` is not a regex, use native split
1453 if (!isRegExp(separator)) return $split.call(string, separator, limit);
1454 var output = [];
1455 var flags = (separator.ignoreCase ? 'i' : '') +
1456 (separator.multiline ? 'm' : '') +
1457 (separator.unicode ? 'u' : '') +
1458 (separator.sticky ? 'y' : '');
1459 var lastLastIndex = 0;
1460 var splitLimit = limit === undefined ? MAX_UINT32 : limit >>> 0;
1461 // Make `global` and avoid `lastIndex` issues by working with a copy
1462 var separatorCopy = new RegExp(separator.source, flags + 'g');
1463 var match, lastIndex, lastLength;
1464 while (match = regexpExec.call(separatorCopy, string)) {
1465 lastIndex = separatorCopy[LAST_INDEX];
1466 if (lastIndex > lastLastIndex) {
1467 output.push(string.slice(lastLastIndex, match.index));
1468 if (match[LENGTH] > 1 && match.index < string[LENGTH]) $push.apply(output, match.slice(1));
1469 lastLength = match[0][LENGTH];
1470 lastLastIndex = lastIndex;
1471 if (output[LENGTH] >= splitLimit) break;
1472 }
1473 if (separatorCopy[LAST_INDEX] === match.index) separatorCopy[LAST_INDEX]++; // Avoid an infinite loop
1474 }
1475 if (lastLastIndex === string[LENGTH]) {
1476 if (lastLength || !separatorCopy.test('')) output.push('');
1477 } else output.push(string.slice(lastLastIndex));
1478 return output[LENGTH] > splitLimit ? output.slice(0, splitLimit) : output;
1479 };
1480 // Chakra, V8
1481 } else if ('0'[$SPLIT](undefined, 0)[LENGTH]) {
1482 internalSplit = function (separator, limit) {
1483 return separator === undefined && limit === 0 ? [] : $split.call(this, separator, limit);
1484 };
1485 } else {
1486 internalSplit = $split;
1487 }
1488
1489 return [
1490 // `String.prototype.split` method
1491 // https://tc39.github.io/ecma262/#sec-string.prototype.split
1492 function split(separator, limit) {
1493 var O = defined(this);
1494 var splitter = separator == undefined ? undefined : separator[SPLIT];
1495 return splitter !== undefined
1496 ? splitter.call(separator, O, limit)
1497 : internalSplit.call(String(O), separator, limit);
1498 },
1499 // `RegExp.prototype[@@split]` method
1500 // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@split
1501 //
1502 // NOTE: This cannot be properly polyfilled in engines that don't support
1503 // the 'y' flag.
1504 function (regexp, limit) {
1505 var res = maybeCallNative(internalSplit, regexp, this, limit, internalSplit !== $split);
1506 if (res.done) return res.value;
1507
1508 var rx = anObject(regexp);
1509 var S = String(this);
1510 var C = speciesConstructor(rx, RegExp);
1511
1512 var unicodeMatching = rx.unicode;
1513 var flags = (rx.ignoreCase ? 'i' : '') +
1514 (rx.multiline ? 'm' : '') +
1515 (rx.unicode ? 'u' : '') +
1516 (SUPPORTS_Y ? 'y' : 'g');
1517
1518 // ^(? + rx + ) is needed, in combination with some S slicing, to
1519 // simulate the 'y' flag.
1520 var splitter = new C(SUPPORTS_Y ? rx : '^(?:' + rx.source + ')', flags);
1521 var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
1522 if (lim === 0) return [];
1523 if (S.length === 0) return callRegExpExec(splitter, S) === null ? [S] : [];
1524 var p = 0;
1525 var q = 0;
1526 var A = [];
1527 while (q < S.length) {
1528 splitter.lastIndex = SUPPORTS_Y ? q : 0;
1529 var z = callRegExpExec(splitter, SUPPORTS_Y ? S : S.slice(q));
1530 var e;
1531 if (
1532 z === null ||
1533 (e = $min(toLength(splitter.lastIndex + (SUPPORTS_Y ? 0 : q)), S.length)) === p
1534 ) {
1535 q = advanceStringIndex(S, q, unicodeMatching);
1536 } else {
1537 A.push(S.slice(p, q));
1538 if (A.length === lim) return A;
1539 for (var i = 1; i <= z.length - 1; i++) {
1540 A.push(z[i]);
1541 if (A.length === lim) return A;
1542 }
1543 q = p = e;
1544 }
1545 }
1546 A.push(S.slice(p));
1547 return A;
1548 }
1549 ];
1550 });
1551
1552
1553 /***/ }),
1554
1555 /***/ 87:
1556 /***/ (function(module, exports, __webpack_require__) {
1557
1558 // 22.1.3.31 Array.prototype[@@unscopables]
1559 var UNSCOPABLES = __webpack_require__(12)('unscopables');
1560 var ArrayProto = Array.prototype;
1561 if (ArrayProto[UNSCOPABLES] == undefined) __webpack_require__(29)(ArrayProto, UNSCOPABLES, {});
1562 module.exports = function (key) {
1563 ArrayProto[UNSCOPABLES][key] = true;
1564 };
1565
1566
1567 /***/ }),
1568
1569 /***/ 90:
1570 /***/ (function(module, exports, __webpack_require__) {
1571
1572 "use strict";
1573
1574
1575 var regexpFlags = __webpack_require__(106);
1576
1577 var nativeExec = RegExp.prototype.exec;
1578 // This always refers to the native implementation, because the
1579 // String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js,
1580 // which loads this file before patching the method.
1581 var nativeReplace = String.prototype.replace;
1582
1583 var patchedExec = nativeExec;
1584
1585 var LAST_INDEX = 'lastIndex';
1586
1587 var UPDATES_LAST_INDEX_WRONG = (function () {
1588 var re1 = /a/,
1589 re2 = /b*/g;
1590 nativeExec.call(re1, 'a');
1591 nativeExec.call(re2, 'a');
1592 return re1[LAST_INDEX] !== 0 || re2[LAST_INDEX] !== 0;
1593 })();
1594
1595 // nonparticipating capturing group, copied from es5-shim's String#split patch.
1596 var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
1597
1598 var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED;
1599
1600 if (PATCH) {
1601 patchedExec = function exec(str) {
1602 var re = this;
1603 var lastIndex, reCopy, match, i;
1604
1605 if (NPCG_INCLUDED) {
1606 reCopy = new RegExp('^' + re.source + '$(?!\\s)', regexpFlags.call(re));
1607 }
1608 if (UPDATES_LAST_INDEX_WRONG) lastIndex = re[LAST_INDEX];
1609
1610 match = nativeExec.call(re, str);
1611
1612 if (UPDATES_LAST_INDEX_WRONG && match) {
1613 re[LAST_INDEX] = re.global ? match.index + match[0].length : lastIndex;
1614 }
1615 if (NPCG_INCLUDED && match && match.length > 1) {
1616 // Fix browsers whose `exec` methods don't consistently return `undefined`
1617 // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
1618 // eslint-disable-next-line no-loop-func
1619 nativeReplace.call(match[0], reCopy, function () {
1620 for (i = 1; i < arguments.length - 2; i++) {
1621 if (arguments[i] === undefined) match[i] = undefined;
1622 }
1623 });
1624 }
1625
1626 return match;
1627 };
1628 }
1629
1630 module.exports = patchedExec;
1631
1632
1633 /***/ }),
1634
1635 /***/ 91:
1636 /***/ (function(module, exports) {
1637
1638 module.exports = function (it) {
1639 if (typeof it != 'function') throw TypeError(it + ' is not a function!');
1640 return it;
1641 };
1642
1643
1644 /***/ }),
1645
1646 /***/ 94:
1647 /***/ (function(module, exports, __webpack_require__) {
1648
1649 "use strict";
1650
1651
1652 var classof = __webpack_require__(113);
1653 var builtinExec = RegExp.prototype.exec;
1654
1655 // `RegExpExec` abstract operation
1656 // https://tc39.github.io/ecma262/#sec-regexpexec
1657 module.exports = function (R, S) {
1658 var exec = R.exec;
1659 if (typeof exec === 'function') {
1660 var result = exec.call(R, S);
1661 if (typeof result !== 'object') {
1662 throw new TypeError('RegExp exec method returned something other than an Object or null');
1663 }
1664 return result;
1665 }
1666 if (classof(R) !== 'RegExp') {
1667 throw new TypeError('RegExp#exec called on incompatible receiver');
1668 }
1669 return builtinExec.call(R, S);
1670 };
1671
1672
1673 /***/ }),
1674
1675 /***/ 95:
1676 /***/ (function(module, exports, __webpack_require__) {
1677
1678 "use strict";
1679
1680 __webpack_require__(190);
1681 var redefine = __webpack_require__(37);
1682 var hide = __webpack_require__(29);
1683 var fails = __webpack_require__(33);
1684 var defined = __webpack_require__(42);
1685 var wks = __webpack_require__(12);
1686 var regexpExec = __webpack_require__(90);
1687
1688 var SPECIES = wks('species');
1689
1690 var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {
1691 // #replace needs built-in support for named groups.
1692 // #match works fine because it just return the exec results, even if it has
1693 // a "grops" property.
1694 var re = /./;
1695 re.exec = function () {
1696 var result = [];
1697 result.groups = { a: '7' };
1698 return result;
1699 };
1700 return ''.replace(re, '$<a>') !== '7';
1701 });
1702
1703 var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = (function () {
1704 // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
1705 var re = /(?:)/;
1706 var originalExec = re.exec;
1707 re.exec = function () { return originalExec.apply(this, arguments); };
1708 var result = 'ab'.split(re);
1709 return result.length === 2 && result[0] === 'a' && result[1] === 'b';
1710 })();
1711
1712 module.exports = function (KEY, length, exec) {
1713 var SYMBOL = wks(KEY);
1714
1715 var DELEGATES_TO_SYMBOL = !fails(function () {
1716 // String methods call symbol-named RegEp methods
1717 var O = {};
1718 O[SYMBOL] = function () { return 7; };
1719 return ''[KEY](O) != 7;
1720 });
1721
1722 var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL ? !fails(function () {
1723 // Symbol-named RegExp methods call .exec
1724 var execCalled = false;
1725 var re = /a/;
1726 re.exec = function () { execCalled = true; return null; };
1727 if (KEY === 'split') {
1728 // RegExp[@@split] doesn't call the regex's exec method, but first creates
1729 // a new one. We need to return the patched regex when creating the new one.
1730 re.constructor = {};
1731 re.constructor[SPECIES] = function () { return re; };
1732 }
1733 re[SYMBOL]('');
1734 return !execCalled;
1735 }) : undefined;
1736
1737 if (
1738 !DELEGATES_TO_SYMBOL ||
1739 !DELEGATES_TO_EXEC ||
1740 (KEY === 'replace' && !REPLACE_SUPPORTS_NAMED_GROUPS) ||
1741 (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)
1742 ) {
1743 var nativeRegExpMethod = /./[SYMBOL];
1744 var fns = exec(
1745 defined,
1746 SYMBOL,
1747 ''[KEY],
1748 function maybeCallNative(nativeMethod, regexp, str, arg2, forceStringMethod) {
1749 if (regexp.exec === regexpExec) {
1750 if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
1751 // The native String method already delegates to @@method (this
1752 // polyfilled function), leasing to infinite recursion.
1753 // We avoid it by directly calling the native @@method method.
1754 return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };
1755 }
1756 return { done: true, value: nativeMethod.call(str, regexp, arg2) };
1757 }
1758 return { done: false };
1759 }
1760 );
1761 var strfn = fns[0];
1762 var rxfn = fns[1];
1763
1764 redefine(String.prototype, KEY, strfn);
1765 hide(RegExp.prototype, SYMBOL, length == 2
1766 // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)
1767 // 21.2.5.11 RegExp.prototype[@@split](string, limit)
1768 ? function (string, arg) { return rxfn.call(string, this, arg); }
1769 // 21.2.5.6 RegExp.prototype[@@match](string)
1770 // 21.2.5.9 RegExp.prototype[@@search](string)
1771 : function (string) { return rxfn.call(string, this); }
1772 );
1773 }
1774 };
1775
1776
1777 /***/ }),
1778
1779 /***/ 96:
1780 /***/ (function(module, exports, __webpack_require__) {
1781
1782 // 7.1.13 ToObject(argument)
1783 var defined = __webpack_require__(42);
1784 module.exports = function (it) {
1785 return Object(defined(it));
1786 };
1787
1788
1789 /***/ })
1790
1791 /******/ });
1792 //# sourceMappingURL=admin.js.map