AnnotationsSidebarConfig
interface
The configuration of the sidebar feature.
ClassicEditor
.create( {
sidebar: {
// Sidebar feature configuration.
}
} )
.then( ... )
.catch( ... );
Copy code
Properties
container : HTMLElement | undefinedmodule:comments/config~AnnotationsSidebarConfig#containerDOM element into which the sidebar will be inserted.
preventScrollOutOfView : boolean | undefinedmodule:comments/config~AnnotationsSidebarConfig#preventScrollOutOfViewChanges how the annotations are positioned inside the sidebar.
If set to
true, the top annotation in the sidebar will never be scrolled above the top edge of the sidebar (which would make it hidden).On the other hand, with this setting enabled, if there is not enough space, annotations will not be positioned exactly next to their linked elements when selected.
Defaults to
false