Merge pull request #346 from sharelatex/as-fix-cursor

Fix bug where cursor position wouldn't be saved when switching documents
This commit is contained in:
Alasdair Smith 2018-02-20 12:01:58 +00:00 committed by GitHub
commit ff88b0adaf

View file

@ -36,7 +36,8 @@ div.full-size(
#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",
keybindings="settings.mode",
font-size="settings.fontSize",
@ -69,8 +70,9 @@ div.full-size(
if hasFeature('rich-text')
#editor-rich-text(
cm-editor
ng-if="!editor.opening && editor.richText"
cm-editor,
ng-if="editor.richText"
ng-show="!!editor.sharejs_doc && !editor.opening"
sharejs-doc="editor.sharejs_doc"
)