mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-31 21:01:33 +02:00
Merge pull request #3646 from overleaf/jpa-narrow-global-watch-dog-scope
[frontend] aceEditor: narrow down the scope of the global watch dog GitOrigin-RevId: 610c771eb6e4dc04acfe0a6ba6e5be7796aaeb87
This commit is contained in:
@@ -117,10 +117,15 @@ App.directive('aceEditor', function(
|
||||
const editor = ace.edit(element.find('.ace-editor-body')[0])
|
||||
editor.$blockScrolling = Infinity
|
||||
|
||||
// end-to-end check for edits -> acks, globally on any doc
|
||||
// This may catch a missing attached ShareJsDoc that in turn bails out
|
||||
// on missing acks.
|
||||
ide.globalEditorWatchdogManager.attachToEditor('Ace', editor)
|
||||
// Besides the main editor, other elements will re-use this directive
|
||||
// for displaying read-only content -- e.g. the history panes.
|
||||
const editorAcceptsChanges = attrs.aceEditor === 'editor'
|
||||
if (editorAcceptsChanges) {
|
||||
// end-to-end check for edits -> acks, globally on any doc
|
||||
// This may catch a missing attached ShareJsDoc that in turn bails out
|
||||
// on missing acks.
|
||||
ide.globalEditorWatchdogManager.attachToEditor('Ace', editor)
|
||||
}
|
||||
|
||||
// auto-insertion of braces, brackets, dollars
|
||||
editor.setOption('behavioursEnabled', scope.autoPairDelimiters || false)
|
||||
|
||||
Reference in New Issue
Block a user