We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If the statusbar is disabled with the status = false option simplemde.toTextArea will fail with:
status = false
simplemde.toTextArea
Error: Argument 1 of Node.removeChild is not an object.
This is easy to reproduce. This will work:
var simplemde = new SimpleMDE(); simplemde.toTextArea();
This not:
var simplemde = new SimpleMDE({ status: false }); simplemde.toTextArea();
The text was updated successfully, but these errors were encountered:
Merge pull request #297 from prostoandrei/development
e72e51c
Fix #286
WesCossick
No branches or pull requests
If the statusbar is disabled with the
status = false
optionsimplemde.toTextArea
will fail with:This is easy to reproduce. This will work:
This not:
The text was updated successfully, but these errors were encountered: