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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Create a
and put some string, like "red" in it. Then click on it using the plugin to edit, and write something containing a line break, like:
red green
click elsewhere to save. All is ok: this is rendered as
redgreen
to edit it again: in the textarea for editing, there will be:
as the has been stripped but not replaced with \n.
The text was updated successfully, but these errors were encountered:
Ah, github ate all my tags, but I hope the above is understandable. Sorry.
Sorry, something went wrong.
Use text() method to get textarea value instead html() method
3fcc073
because ember 1.7 add script tag around textarea
Update jquery.editable.js
78e9433
No branches or pull requests
Create a
and put some string, like "red" in it. Then click on it using the plugin to edit, and write something containing a line break, like:
red
green
click elsewhere to save. All is ok: this is rendered as
red
.green
But now click on the
to edit it again: in the textarea for editing, there will be:
redgreen
as the
has been stripped but not replaced with \n.
The text was updated successfully, but these errors were encountered: