From eba7e97590ea7667f82c1aeff7a11ef1f2b5e225 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Tue, 24 May 2016 23:20:54 -0400 Subject: [PATCH] fix cursor after removing text not-first text node --- editor.coffee | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/editor.coffee b/editor.coffee index a3f493b..0b76863 100644 --- a/editor.coffee +++ b/editor.coffee @@ -1180,14 +1180,15 @@ class PeachHTML5Editor # figure out where cursor should land block = @find_block_parent @cursor.n new_cursor = find_prev_cursor_position @tree, n: @cursor.n, i: 0 - ncb = @find_block_parent new_cursor + ncb = @find_block_parent new_cursor.n if ncb isnt block new_cursor = find_next_cursor_position @tree, n: @cursor.n, i: 1 # delete text node @remove_node @cursor.n # delete any inline parents n = @cursor.n.parent - while n and n isnt block + while n? and n isnt block + # FIXME break if anything else in the text run is in here too while n.children.length > 0 @move_node n.children[0], n.parent, n @remove_node n -- 1.7.10.4