diff --git a/views/index.html b/views/index.html index aeaf9bc..111fc79 100644 --- a/views/index.html +++ b/views/index.html @@ -77,7 +77,11 @@ socket.on('download allNotes', function(msg){ //console.log(msg); userKeypress = false; // Set this back to false, still getting infinite loop. + var cursorPos = editor.getCursor(); + var scrollTop = editor.getScrollerElement().scrollTop; editor.getDoc().setValue(msg); + editor.setCursor(cursorPos); + editor.scrollTo(null, scrollTop); }); document.onkeydown = function(){ userKeypress = true; };