jodit icon indicating copy to clipboard operation
jodit copied to clipboard

Show full screen editor at custom position

Open pmsferreira opened this issue 4 years ago • 1 comments

Jodit Version: 3.4.29

Browser: Chrome OS: Mac Is React App: True

Code

Screenshot 2020-10-22 at 11 56 30

Expected behavior:

Show editor on fullscreen only is this grey view (ignoring the other below views) Screenshot 2020-10-22 at 12 00 01

Actual behavior:

Full screen all page

pmsferreira avatar Oct 22 '20 11:10 pmsferreira

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
});

xdan avatar Oct 27 '20 20:10 xdan