![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/magento/module-page-builder/view/adminhtml/web/js/ |
/*eslint-disable */ /* jscs:disable */ define(["underscore"], function (_underscore) { /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ var Config = /*#__PURE__*/function () { "use strict"; function Config() {} /** * Set the initial config * * @param config */ Config.setConfig = function setConfig(config) { Config.config = _underscore.extend(Config.config, config); } /** * Set the current instances mode, this differs between preview or master depending on whether we're rendering the * admins preview or rendering the master format. * * @param {"Preview" | "Master"} mode */ ; Config.setMode = function setMode(mode) { Config.mode = mode; } /** * Retrieve the current instances mode */ ; Config.getMode = function getMode() { return Config.mode; } /** * Retrieve the init config * * @param {string} key * @returns {T} */ ; Config.getConfig = function getConfig(key) { if (key) { if (typeof Config.config[key] !== "undefined") { return Config.config[key]; } return null; } return Config.config; } /** * Retrieve a content type from the configuration * * @param {string} contentType * @returns {any} */ ; Config.getContentTypeConfig = function getContentTypeConfig(contentType) { if (typeof Config.getConfig("content_types")[contentType] !== "undefined") { return Config.getConfig("content_types")[contentType]; } return null; }; return Config; }(); Config.config = { dataContentTypeAttributeName: "data-content-type", bodyId: "html-body" }; return Config; }); //# sourceMappingURL=config.js.map