Skip to content

Commit

Permalink
Merge branch 't/11960'
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed May 26, 2014
2 parents cb280df + dc6d065 commit 4d351f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -6,6 +6,7 @@ CKEditor 4 Changelog
Fixed Issues:

* [#11983](http://dev.ckeditor.com/ticket/11983): Fixed: Clicking nested widget does not focus it. Additionally, performance of [`widget.repository.getByElement`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget.repository-method-getByElement) method has been improved.
* [#11960](http://dev.ckeditor.com/ticket/11960): Fixed: [Blink/Webkit] Caret should be scrolled into view on *Backspace* and *Delete* (covered only merging blocks case).

## CKEditor 4.4.1

Expand Down
3 changes: 3 additions & 0 deletions core/editable.js
Expand Up @@ -884,6 +884,9 @@
// Restore selection.
selection.selectBookmarks( bookmarks );

// Scroll to the new position of the caret (#11960).
selection.scrollIntoView();

editor.fire( 'saveSnapshot' );

return false;
Expand Down

0 comments on commit 4d351f6

Please sign in to comment.