jbt / markdown-editor

Live (Github-flavored) Markdown Editor
http://jbt.github.com/markdown-editor
ISC License
2.83k stars 644 forks source link

Using it half screen ? #5

Open Phyks opened 11 years ago

Phyks commented 11 years ago

Hi,

I really like this markdown editor ! But, there's a bug that would make it really better if corrected :)

I often edit files side by side on my screen (so, half the screen for one app and the other app for the other). But, if I use markdown editor on a half screen, I just get the result visualisation (ie the "textarea" editor disappears).

This is not very practical, because it makes it completely impossible to use on a half screen...

Vdragon commented 9 years ago

:+1: for this issue

michaelboke commented 9 years ago

Noticed this too, Seems to be a css media query who hides it at a certain width, comment or remove from index.html:129

@media screen and (max-width: 1024px) {
      #in {
        display: none;
      }
      #out {
        left: 0;
        padding-left: 10px;
      }
    }

and you can use it halfscreen

Phyks commented 8 years ago

Any news on this? Willing to have a PR?

aero31aero commented 8 years ago

This is optional, I'd say. I'll add this feature in a menu I'm creating, so that the user can have either 'in' or 'out' in half-screen mode.