Open GoogleCodeExporter opened 8 years ago
Original comment by pall...@google.com
on 15 Jul 2011 at 1:34
I have also encountered this and traced it back to the fact that EnterHandler
is using keyPress to capture backspaces, but keyPress is not reliably triggered
for backspace. It does not trigger for me in Chrome/OSX.
I resolved it by add a keyDown handler which calls the appropriate method.
Original comment by jonat...@livefyre.com
on 24 May 2012 at 9:50
Attachments:
The above fix unfortunately doesn't keep closure from creating <br>s in
addition to <p>s in firefox (up to 23.0.1 as of now).
To re-create:
start out with editor on one paragraph: <p>hello</p>
hit enter for new line: <p>hello</p><p> </p>
type a char: <p>hello</p><p>x <br></p>
Original comment by elgha...@gmail.com
on 20 Aug 2013 at 10:25
Original issue reported on code.google.com by
elois...@gmail.com
on 11 Dec 2009 at 1:38