Feature

Fullscreen

Expand the editor to fill the entire browser window for a focused editing experience.

toolbar: fullScreen

Fullscreen Mode

When working with long documents or tables and images, fullscreen mode provides a wider view that significantly improves productivity.

Click the button again or press Esc to return to the original size.

Tips

  • Reviewing documents with many tables and images
  • Writing long-form content with focus
  • Dedicating one screen of a dual-monitor setup to the editor

Configuration

mode: classic · 1 button
var config = Object.assign(synapEditorConfig, {
    'editor.license': synapEditorLicense,
    'editor.lang': 'en',
    'editor.toolbar': [
        'new', '|',
        'fullScreen'
    ],
    'editor.menu.show': false
});

// Create editor instance
var editor = new SynapEditor('synapEditor', config, initialHtml);