X-Git-Url: https://jasonwoof.com/gitweb/?p=peach-html5-editor.git;a=blobdiff_plain;f=editor.coffee;h=0b768632c21dc2fbf4ab78fa79f424646cfe790e;hp=a3f493bdc8ed8a68bb3ed1243923369f4b85c801;hb=eba7e97590ea7667f82c1aeff7a11ef1f2b5e225;hpb=ab13f4d01dc8c466542fe2df7ca6bcf8cc823148 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