Skip to content

Commit

Permalink
Merge branch 't/9929'
Browse files Browse the repository at this point in the history
  • Loading branch information
oleq committed Nov 4, 2013
2 parents 152e853 + 08b7fff commit cd791a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -7,6 +7,7 @@ Fixed Issues:

* [#10994](http://dev.ckeditor.com/ticket/10994): Fixed: loading external jQuery when opening adapter sample from file.
* [#10975](http://dev.ckeditor.com/ticket/10975): [IE] Fixed: Error thrown while opening color palette.
* [#9929](http://dev.ckeditor.com/ticket/9929): [Blink/Webkit] Fixed: A non-breaking space is created once deleted a character and a regular space is typed.

## CKEditor 4.2.2

Expand Down
4 changes: 2 additions & 2 deletions core/editable.js
Expand Up @@ -565,9 +565,9 @@
// 1. Del/Backspace key before/after table;
// 2. Backspace Key after start of table.
if ( ( block = path.block ) &&
range[ rtl ? 'checkStartOfBlock' : 'checkEndOfBlock' ]() &&
( next = block[ rtl ? 'getPrevious' : 'getNext' ]( isNotWhitespace ) ) &&
next.is( 'table' ) )
next.is( 'table' ) &&
range[ rtl ? 'checkStartOfBlock' : 'checkEndOfBlock' ]() )
{
editor.fire( 'saveSnapshot' );

Expand Down

0 comments on commit cd791a6

Please sign in to comment.