Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #66 from ckeditor/i/6091
Browse files Browse the repository at this point in the history
Internal: Adjusted the code to changes required for replacing the `StylesProcessor` singleton with an instance of the class. See ckeditor/ckeditor5#6091.
  • Loading branch information
Reinmar committed Mar 3, 2020
2 parents 1c5746c + 675a6e5 commit 65223bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inlineeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default class InlineEditor extends Editor {
constructor( sourceElementOrData, config ) {
super( config );

this.data.processor = new HtmlDataProcessor();
this.data.processor = new HtmlDataProcessor( this.editing.view.document );

this.model.document.createRoot();

Expand Down

0 comments on commit 65223bc

Please sign in to comment.