我需要有关 Jodit 的帮助。我正在使用 3.7.2 版(此时是最新版本)和此配置:
{
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'
}
我想以全尺寸(全屏)模式显示按钮数组。因此,编辑器位于 660px 宽的元素内,它在工具栏上显示按钮MD数组按钮,但是当通过单击放大(全屏)按钮以全尺寸打开编辑器时,我想显示按钮数组中的按钮,因为宽度是超过 660 像素(我的屏幕上为 1720 像素)。这可能吗?