Skip to content

Commit

Permalink
Merge branch 't/9883'
Browse files Browse the repository at this point in the history
  • Loading branch information
fredck committed Feb 12, 2013
2 parents da2dbb2 + 4cf4b68 commit e1a2770
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 @@ -14,6 +14,7 @@ CKEditor 4 Changelog
* [#9872](http://dev.ckeditor.com/ticket/9872): Editor.checkDirty() returns true when called onload. Removed obsolete editor.mayBeDirty flag.
* [#9893](http://dev.ckeditor.com/ticket/9893): Fixed broken toolbar when editing mixed-dir content in quirks mode.
* [#9845](http://dev.ckeditor.com/ticket/9845): Fixed TAB navigation in the Link dialog and the Anchors option is used and no anchors are available.
* [#9883](http://dev.ckeditor.com/ticket/9883): Maximizing was making the entire page editable with divarea based editors.

## CKEditor 4.0.1

Expand Down
3 changes: 3 additions & 0 deletions plugins/maximize/plugin.js
Expand Up @@ -69,6 +69,9 @@
}

function refreshCursor( editor ) {
if ( editor.editable().isInline() )
return;

// Refresh all editor instances on the page (#5724).
var all = CKEDITOR.instances;
for ( var i in all ) {
Expand Down

0 comments on commit e1a2770

Please sign in to comment.