From 8023c03abc1555f05a7bc2e497d714ea431d9ee7 Mon Sep 17 00:00:00 2001 From: Ken Monks Date: Wed, 28 Aug 2024 22:39:10 -0600 Subject: [PATCH] Scroll to top when showing Preview atom. --- lurchmath/header-editor.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lurchmath/header-editor.js b/lurchmath/header-editor.js index 7320c13b..92c00136 100644 --- a/lurchmath/header-editor.js +++ b/lurchmath/header-editor.js @@ -415,6 +415,7 @@ export const install = editor => { editor.insertContent( allPreviewHTML ) editor.undoManager.clear() editor.selection.setCursorLocation() // deselect new insertions + editor.getWin().scrollTo(0, 0) // scroll the window to the top } } ) }