I need help with Jodit.. I'm using version 3.7.2 (latest at this time) with this config:
{
useInputsPlaceholder: true,
tabIndex: 0,
height: 200,
spellcheck: false,
allowResizeY: false,
toolbarAdaptive: true,
showCharsCounter: false,
showWordsCounter: false,
showXPathInStatusbar: false,
askBeforePasteHTML: false,
askBeforePasteFromWord: false,
disablePlugins: 'paste-storage,sticky,xpath,media,video,file,about,drag-and-drop-element,drag-and-drop,source,stat',
// maxHeight: 400,
sizeMD: 660,
inline: false,
toolbarInlineForSelection: false,
buttons: ['bold', 'underline', 'strikethrough', 'italic', 'indent', 'outdent', 'fontsize', 'paragraph', 'brush', '|', 'align', 'ul', 'ol', 'table', 'hr', 'symbol', 'eraser', 'copyformat', 'superscript', 'subscript', 'undo', 'redo', 'find', 'preview', 'print', 'fullsize'],
buttonsMD: ['bold', 'underline', 'strikethrough', 'italic', 'indent', 'outdent', 'fontsize', 'brush', '|', 'align', 'ol', 'table', 'hr', 'preview', 'print', 'fullsize'],
toolbarStickyOffset: 'NaN',
toolbarButtonSize: 'small',
beautifyHTML: false,
sourceEditor: 'area',
defaultActionOnPaste: 'insert_clear_html'
}
and I want to show buttons array in full-size(full-screen) mode. So, the editor is inside an element 660px wide and it show buttonsMD array buttons on toolbar, but when the editor is opened in full size by clicking the enlarge (full-screen) button I want to display buttons from buttons array since the width is over 660px (1720px on my screen). Is this possible?