From 3b0ea1cf0431211db79091277e2dec49f2c1bbd3 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Sat, 26 Mar 2016 14:24:12 -0400 Subject: [PATCH] auto-drop spaces created by enter key --- editor.coffee | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/editor.coffee b/editor.coffee index 4211c11..9e21544 100644 --- a/editor.coffee +++ b/editor.coffee @@ -1111,8 +1111,22 @@ class PeachHTML5Editor return unless parent.el? # insert the character if i is 0 - n.text = char + n.text + # special case: typing before a space that's the only thing in a block/doc + # reason: enter key creates blocks with just a space in them + special_case = false + if n.text is ' ' + if n.parent?.el? + if n.parent.children.length is 1 + if n.parent.children[0] is n + special_case = true + else + special_case = true + if special_case + n.text = char + else + n.text = char + n.text else if i is n.text.length + # replace the space n.text += char else n.text = -- 1.7.10.4