Sign up (with export icon)

FullscreenConfig

Api-interface icon interface

The configuration of the fullscreen mode feature.

The properties defined in this config are set in the config.fullscreen namespace.

ClassicEditor
	.create( editorElement, {
		fullscreen: {
			// Fullscreen mode configuration.
		}
	} )
	.then( ... )
	.catch( ... );
Copy code

See all editor options.

Properties

  • Chevron-right icon

    container : HTMLElement | undefined

    The container element for the fullscreen mode. This should be a reference to an existing, positioned element in the DOM. By default, the fullscreen mode is appended to the <body> element.

  • Chevron-right icon

    menuBar : object | undefined

    The configuration of the menu bar in the fullscreen mode.

  • Chevron-right icon

    onEnterCallback : ( container: HTMLElement ) => void | undefined

    Customizable callback that is called when you enter the fullscreen mode. It's executed after the editor UI elements are moved to the fullscreen mode.

    Defaults to `() => {}`

  • Chevron-right icon

    onLeaveCallback : ( container: HTMLElement ) => void | undefined

    Customizable callback that is called when you leave the fullscreen mode. It's executed before the editor UI elements are moved back to the normal mode.

    Defaults to `() => {}`

  • Chevron-right icon

    toolbar : object | undefined

    The configuration of the toolbar in the fullscreen mode.