Interface

RevisionHistoryConfig (revision-history)

@ckeditor/ckeditor5-revision-history/src/revisionhistory

interface

The configuration of the revision history feature.

ClassicEditor
	.create( {
		revisionHistory: ... // Revision history feature configuration.
	} )
	.then( ... )
	.catch( ... );

See all editor options.

Filtering

Properties

  • editorContainer : HTMLElement

    The DOM element that contains the DOM structure for the editor.

    This element will be hidden when the user opens the revision history.

  • viewerContainer : HTMLElement

    DOM element which contains the DOM structure for revision history viewer.

    This element should be hidden (using CSS) when the editor is initialized. This element will be shown when the user opens the revision history viewer.

  • viewerEditorElement : HTMLElement

    The DOM element for the revision history viewer editor instance.

    This element will be used to initialize the revision history viewer editor instance and will be replaced by it. It should be empty.

  • viewerSidebarContainer : HTMLElement

    The DOM element for the revision history viewer sidebar container.

    This element will be used as a container for the revision history viewer. The sidebar content will be inserted into it.