diff --git a/src/js/easymde.js b/src/js/easymde.js index 62aaa69..0587b91 100644 --- a/src/js/easymde.js +++ b/src/js/easymde.js @@ -342,13 +342,11 @@ function toggleFullScreen(editor) { } // Remove or set maxHeight - if (cm.getOption('fullScreen')) { - if (editor.options.maxHeight !== false) { + if (editor.options.maxHeight !== false) { + if (cm.getOption('fullScreen')) { cm.getScrollerElement().style.removeProperty('height'); sidebyside.style.removeProperty('height'); - } - } else { - if (editor.options.maxHeight !== false) { + } else { cm.getScrollerElement().style.height = editor.options.maxHeight; editor.setPreviewMaxHeight(); }