diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor.coffee index bfd6fca912..3b9b81fae4 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor.coffee @@ -170,8 +170,6 @@ define [ session = editor.getSession() session.setUseWrapMode(true) session.setMode("ace/mode/latex") - session.setAnnotations scope.annotations - updateCount = 0 onChange = () -> @@ -193,6 +191,9 @@ define [ undoManager.nextUpdateIsRemote = true sharejs_doc.attachToAce(editor) + # need to set annotations after attaching because attaching + # deletes and then inserts document content + session.setAnnotations scope.annotations editor.focus()