Scroll Missing on Full-Page for Auto-height Instance
Opened this issue · 0 comments
jpreston84 commented
Jodit Version: 4.2.27
Browser: Chrome 131.0.6778.85 (64-bit)
OS: Linux (Kubuntu 24.04 x64)
Is React App: False
Reproduced on xdsoft.net: False
Code
$( document ).ready(
function ()
{
const editor =
Jodit.make(
'#myContainer',
{
iframe: true,
iframeCSSLinks: [ 'https://www.somevaliddomain.com/style.css' ],
}
)
;
}
);
Expected behavior:
When the height is set to auto, no scroll appears (relies on browser scroll to access full page content in the editor). However, when you go to full-page mode, a scroll should appear.
Actual behavior:
In full-page mode, scroll does not appear.
Notes:
If you enable a fixed height, both full-page an non-full-page modes show a scroll bar.