Skip to content

Commit

Permalink
Merge branch 't/11096'
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Jasiun committed Nov 6, 2013
2 parents e082dfa + 566e915 commit bc2a560
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Expand Up @@ -9,6 +9,8 @@ Fixed Issues:
* [#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.
* [#10963](http://dev.ckeditor.com/ticket/10963): Fixed: JAWS issue with keyboard shortcut for Magicline.
* [#11096](http://dev.ckeditor.com/ticket/11096): Fixed: TypeError: Object has no method 'is'.


## CKEditor 4.2.2

Expand Down
1 change: 1 addition & 0 deletions core/editable.js
Expand Up @@ -566,6 +566,7 @@
// 2. Backspace Key after start of table.
if ( ( block = path.block ) &&
( next = block[ rtl ? 'getPrevious' : 'getNext' ]( isNotWhitespace ) ) &&
( next.type == CKEDITOR.NODE_ELEMENT ) &&
next.is( 'table' ) &&
range[ rtl ? 'checkStartOfBlock' : 'checkEndOfBlock' ]() )
{
Expand Down

0 comments on commit bc2a560

Please sign in to comment.