AnnotationsSidebarConfig
interface
The configuration of the sidebar feature.
ClassicEditor
.create( {
sidebar: {
// Sidebar feature configuration.
}
} )
.then( ... )
.catch( ... );
Properties
-
container : HTMLElement | undefined
module:comments/config~AnnotationsSidebarConfig#container
DOM element into which the sidebar will be inserted.
-
preventScrollOutOfView : boolean | undefined
module:comments/config~AnnotationsSidebarConfig#preventScrollOutOfView
Changes 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