Merge pull request #11583 from overleaf/msm-ace-ce

[web] Force ACE when `modules/source-editor` not available

GitOrigin-RevId: 2b43a048e882d99aa52ee8ead6c67152d4080eb2
This commit is contained in:
Miguel Serrano 2023-02-01 17:31:24 +01:00 committed by Copybot
parent 9795904fac
commit 55bdcf7664
2 changed files with 6 additions and 0 deletions

View file

@ -23,6 +23,7 @@ meta(name="ol-wsRetryHandshake" data-type="json" content=settings.wsRetryHandsha
meta(name="ol-pdfjsVariant" content=pdfjsVariant)
meta(name="ol-debugPdfDetach" data-type="boolean" content=debugPdfDetach)
meta(name="ol-showLegacySourceEditor", data-type="boolean" content=showLegacySourceEditor)
meta(name="ol-hasNewSourceEditor", data-type="boolean" content=moduleIncludesAvailable('editor:source-editor'))
meta(name="ol-showSymbolPalette" data-type="boolean" content=showSymbolPalette)
meta(name="ol-galileoEnabled" data-type="string" content=galileoEnabled)
meta(name="ol-galileoPromptWords" data-type="string" content=galileoPromptWords)

View file

@ -195,6 +195,11 @@ export default EditorManager = (function () {
}
newSourceEditor() {
// the new source editor is not available at the moment in CE
if (!getMeta('ol-hasNewSourceEditor')) {
return false
}
// Use the new source editor if the legacy editor is disabled
if (!getMeta('ol-showLegacySourceEditor')) {
return true