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
Sometimes an additional \n is added when applying a delta with quill.updateContents(delta).
Steps for Reproduction
quill.setContents([{insert: "ab\nc"}, {insert: "\n", attributes: {list: 'ordered'}}]); quill.updateContents([ {retain: 1}, {delete: 3}, {retain: 1, attributes: {list: "ordered"}} ]); quill.getContents();
Expected behavior:
[{insert:"a"},{insert:"\n",attributes:{list:"ordered"}}]
Actual behavior:
[{insert:"a"},{insert:"\n\n",attributes:{list:"ordered"}}]
Platforms: Firefox 47 on Windows 7
Version: 1.0-beta.4
The text was updated successfully, but these errors were encountered:
Verified that the fix work in 1.0 head. Thanks
Sorry, something went wrong.
e5651c6
No branches or pull requests
Sometimes an additional \n is added when applying a delta with quill.updateContents(delta).
Steps for Reproduction
Expected behavior:
Actual behavior:
Platforms:
Firefox 47 on Windows 7
Version:
1.0-beta.4
The text was updated successfully, but these errors were encountered: