From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- .../static/src/js/content/website_root_instance.js | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 addons/website/static/src/js/content/website_root_instance.js (limited to 'addons/website/static/src/js/content/website_root_instance.js') diff --git a/addons/website/static/src/js/content/website_root_instance.js b/addons/website/static/src/js/content/website_root_instance.js new file mode 100644 index 00000000..fbbefb03 --- /dev/null +++ b/addons/website/static/src/js/content/website_root_instance.js @@ -0,0 +1,26 @@ +odoo.define('root.widget', function (require) { +'use strict'; + +const AbstractService = require('web.AbstractService'); +const env = require('web.public_env'); +var lazyloader = require('web.public.lazyloader'); +var websiteRootData = require('website.root'); + +/** + * Configure Owl with the public env + */ +owl.config.mode = env.isDebug() ? "dev" : "prod"; +owl.Component.env = env; + +/** + * Deploy services in the env + */ +AbstractService.prototype.deployServices(env); + +var websiteRoot = new websiteRootData.WebsiteRoot(null); +return lazyloader.allScriptsLoaded.then(function () { + return websiteRoot.attachTo(document.body).then(function () { + return websiteRoot; + }); +}); +}); -- cgit v1.2.3