Skip to content

Commit

Permalink
Merge branch 't/11850'
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed May 8, 2014
2 parents cce1107 + 741b7ef commit 0f68337
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -22,6 +22,7 @@ Fixed Issues:
* [#11788](http://dev.ckeditor.com/ticket/11788): Fixed: [Filter](http://docs.ckeditor.com/#!/api/CKEDITOR.htmlParser.filter) rules are not applied inside elements with `contenteditable` attribute set to `true`.
* [#11798](http://dev.ckeditor.com/ticket/11798): Fixed: Inserting non-editable element inside a table cell breaks the table badly.
* [#11793](http://dev.ckeditor.com/ticket/11793): Fixed: Drop down is not "on" when clicking it while editor is blurred.
* [#11850](http://dev.ckeditor.com/ticket/11850): Fixed: Filter downcasting fake object to element it replaced is not applied if fake object element is non-editable.

Other changes:

Expand Down
7 changes: 5 additions & 2 deletions plugins/fakeobjects/plugin.js
Expand Up @@ -64,8 +64,11 @@
var dataProcessor = editor.dataProcessor,
htmlFilter = dataProcessor && dataProcessor.htmlFilter;

if ( htmlFilter )
htmlFilter.addRules( htmlFilterRules );
if ( htmlFilter ) {
htmlFilter.addRules( htmlFilterRules, {
applyToAll: true
} );
}
}
} );

Expand Down

0 comments on commit 0f68337

Please sign in to comment.