firepad
firepad copied to clipboard
Set min-height on firepad container. (Getting Started snippets broken)
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.
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%;
}