Skip to content

FullScreenModule

This module adds a button to the toolbar that allows toggling the editor into fullscreen mode.

It uses the quill-toggle-fullscreen-button library.

Options

OptionTypeDescriptionDefault
buttonTitlestringThe title attribute of the button (tooltip)'Toggle Fullscreen'
buttonHTMLstringThe HTML content of the button (icon)(default SVG icon)

Usage example

php
use Ehyiah\QuillJsBundle\DTO\Modules\FullScreenModule;

'modules' => [
    new FullScreenModule([
        'buttonTitle' => 'Maximize',
    ]),
],