mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-06 16:02:03 +00:00
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:
parent
9795904fac
commit
55bdcf7664
2 changed files with 6 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue