firepad icon indicating copy to clipboard operation
firepad copied to clipboard

Set min-height on firepad container. (Getting Started snippets broken)

Open mikelehen opened this issue 10 years ago • 1 comments

Right now if you just copy/paste the "dependencies" and "initializing firepad" snippets from http://www.firepad.io/docs/ the editor is broken because the firepad div isn't big enough.

mikelehen avatar May 09 '15 18:05 mikelehen

I also got this problem but after adding css rule below, it worked.

html { 
    height: 100%;
}
body {
     height: 100%; width: 100%;
}
#firepad-container {
     height: 100%; width: 100%;
}

nirleka avatar May 13 '15 20:05 nirleka