We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
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
In my usecase (Angular, many editor, long text in a block), copy, paste and click any line in block that has too long lines makes browser freezing.
I found that isEmpty method in editor.js/src/components/dom.ts has bad algorithm to traverse nodes.
isEmpty
editor.js/src/components/dom.ts
When there are nodes like A, B, C, D, E, then this method traverse nodes as A, B, C, D, E, B, C, D, E, C, D, E, D, E.
A, B, C, D, E
A, B, C, D, E, B, C, D, E, C, D, E, D, E
The text was updated successfully, but these errors were encountered:
Resolved by #1096
Sorry, something went wrong.
No branches or pull requests
In my usecase (Angular, many editor, long text in a block), copy, paste and click any line in block that has too long lines makes browser freezing.
I found that
isEmpty
method ineditor.js/src/components/dom.ts
has bad algorithm to traverse nodes.When there are nodes like
A, B, C, D, E
, then this method traverse nodes asA, B, C, D, E, B, C, D, E, C, D, E, D, E
.The text was updated successfully, but these errors were encountered: