[main] code.js loaded for wrong path for IE

This commit is contained in:
maxkadushkin
2025-09-02 20:02:49 +03:00
parent 8d03f97940
commit 1953d016df
5 changed files with 11 additions and 5 deletions

View File

@ -154,7 +154,8 @@ require([
'common/main/lib/view/SearchBar',
'common/forms/lib/view/modals'
], function() {
app.postLaunchScripts = ['documenteditor/forms/code'];
const code_path = !window.isIEBrowser ? 'documenteditor/forms/code' : 'documenteditor/forms/ie/code';
app.postLaunchScripts = [code_path];
app.start();
});