jodit
jodit copied to clipboard
Show full screen editor at custom position
Jodit Version: 3.4.29
Browser: Chrome OS: Mac Is React App: True
Code
Expected behavior:
Show editor on fullscreen only is this grey view (ignoring the other below views)
Actual behavior:
Full screen all page
You can set parent container position:relative
And disable globalFullSize
option
<div style="position: relative; width: 500px; height: 500px;"><textarea id="editor"></div>
Jodit.make('#editor', {
fullsize: true,
globalFullSize: false
});