From: Jason Woofenden Date: Tue, 24 May 2016 22:00:22 +0000 (-0400) Subject: fix bug from recent backspace rewrite X-Git-Url: https://jasonwoof.com/gitweb/?p=peach-html5-editor.git;a=commitdiff_plain;h=e5b888b51062da74fd238c6b6e327d9c18ec0fd2 fix bug from recent backspace rewrite --- diff --git a/editor.coffee b/editor.coffee index 8835a33..c6b13d6 100644 --- a/editor.coffee +++ b/editor.coffee @@ -1164,7 +1164,7 @@ class PeachHTML5Editor if @cursor.n.text.length is 1 # if emptying text node if run.length is 1 # if emptying text run (of text/br/hr/inline-block) # remove inline-parents of @cursor.n - block = @find_block_parent n + block = @find_block_parent @cursor.n changed = false n = @cursor.n.parent while n and n isnt block