mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Fix bug where cursor position wouldn't be saved when switching documents
This was caused by an underlying bug/poor optimisation where the aceEditor directive would be reconstructed every time when switching between documents. This wiped instances like CursorPositionManager which relies on keeping state between doc changes. Now the directive is only removed when switching between Ace and CM. This prevents other potential bugs and improves performance.
This commit is contained in:
parent
fc1e94b14a
commit
fafbbfef87
1 changed files with 5 additions and 3 deletions
|
@ -36,7 +36,8 @@ div.full-size(
|
||||||
|
|
||||||
#editor(
|
#editor(
|
||||||
ace-editor="editor",
|
ace-editor="editor",
|
||||||
ng-if="!!editor.sharejs_doc && !editor.opening && !editor.richText"
|
ng-if="!editor.richText",
|
||||||
|
ng-show="!!editor.sharejs_doc && !editor.opening",
|
||||||
theme="settings.theme",
|
theme="settings.theme",
|
||||||
keybindings="settings.mode",
|
keybindings="settings.mode",
|
||||||
font-size="settings.fontSize",
|
font-size="settings.fontSize",
|
||||||
|
@ -69,8 +70,9 @@ div.full-size(
|
||||||
|
|
||||||
if hasFeature('rich-text')
|
if hasFeature('rich-text')
|
||||||
#editor-rich-text(
|
#editor-rich-text(
|
||||||
cm-editor
|
cm-editor,
|
||||||
ng-if="!editor.opening && editor.richText"
|
ng-if="editor.richText"
|
||||||
|
ng-show="!!editor.sharejs_doc && !editor.opening"
|
||||||
sharejs-doc="editor.sharejs_doc"
|
sharejs-doc="editor.sharejs_doc"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue