From 603a9fd3e8ea99b1487fd2f702f5c6a3be5c7b63 Mon Sep 17 00:00:00 2001 From: jkaplon Date: Sat, 26 Nov 2016 22:43:07 -0500 Subject: [PATCH] Fix issue with cursor moving back to 0,0 after a refresh. --- views/index.html | 4 ++++ 1 file changed, 4 insertions(+) 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; };