From e5b888b51062da74fd238c6b6e327d9c18ec0fd2 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Tue, 24 May 2016 18:00:22 -0400 Subject: [PATCH] fix bug from recent backspace rewrite --- editor.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.7.10.4