From b6f00e7b40ce8b1183bb7dd7edcc488f445bd31b Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Sat, 23 Oct 2021 11:34:31 +0300 Subject: [PATCH] [mobile] fix app default lang --- apps/presentationeditor/mobile/src/index_dev.html | 3 ++- apps/spreadsheeteditor/mobile/src/index_dev.html | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/presentationeditor/mobile/src/index_dev.html b/apps/presentationeditor/mobile/src/index_dev.html index cf7dad3ca..60a5d6523 100644 --- a/apps/presentationeditor/mobile/src/index_dev.html +++ b/apps/presentationeditor/mobile/src/index_dev.html @@ -59,8 +59,9 @@ return urlParams; } + window.Common = {Locale: {defaultLang: <%= htmlWebpackPlugin.options.system.env.defaultLang %>}}; let params = getUrlParams(), - lang = (params["lang"] || <%= htmlWebpackPlugin.options.system.env.defaultLang %>).split(/[\-\_]/)[0]; + lang = (params["lang"] || window.Common.Locale.defaultLang).split(/[\-\_]/)[0]; window.frameEditorId = params["frameEditorId"]; window.parentOrigin = params["parentOrigin"]; diff --git a/apps/spreadsheeteditor/mobile/src/index_dev.html b/apps/spreadsheeteditor/mobile/src/index_dev.html index 8447a97cb..c4686125b 100644 --- a/apps/spreadsheeteditor/mobile/src/index_dev.html +++ b/apps/spreadsheeteditor/mobile/src/index_dev.html @@ -59,8 +59,9 @@ return urlParams; } + window.Common = {Locale: {defaultLang: <%= htmlWebpackPlugin.options.system.env.defaultLang %>}}; let params = getUrlParams(), - lang = (params["lang"] || <%= htmlWebpackPlugin.options.system.env.defaultLang %>).split(/[\-\_]/)[0]; + lang = (params["lang"] || window.Common.Locale.defaultLang).split(/[\-\_]/)[0]; window.frameEditorId = params["frameEditorId"]; window.parentOrigin = params["parentOrigin"];