Interface

TrackChangesConfig (track-changes)

@ckeditor/ckeditor5-track-changes/src/trackchanges

interface

The configuration of the track changes feature.

ClassicEditor
	.create( {
		trackChanges: ... // Track changes feature configuration.
	} )
	.then( ... )
	.catch( ... );

See all editor options.

Filtering

Properties

  • SuggestionThreadView : BaseSuggestionThreadView

    A view class to be used to create suggestion thread views (used as annotations - in sidebar balloons or in inline annotations).

    When no view is passed then SuggestionThreadView is used to display suggestion annotations.

    Using this property is described in the Annotation customization section.

  • disableComments : Boolean

    A property that specifies if the comments for suggestions are enabled or disabled. When the option is set to true, the comment thread UI for suggestions will be hidden and commenting suggestions will be disabled.

    Suggestion thread views will be marked with the additional ck-suggestion--disabled-comments class when the suggestion comments are disabled.