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
The case is #1331.
It should be possible to make such a selection:
<div>[<div></div>]</div>
because div is marked as isObject (all objects are selectable).
div
isObject
However, that does not work. The reason why it works in the demo I created in that ticket is because I accidentally added:
editor.model.schema.extend( '$text', { allowIn: 'div' } );
Which made this scenario fall into "selection is allowed in text" case.
The text was updated successfully, but these errors were encountered:
Might be fixed by: ckeditor/ckeditor5-engine#1608. I'll check this.
Sorry, something went wrong.
Yes. It does. ckeditor/ckeditor5-engine@1d54e74
Merge pull request #1608 from ckeditor/t/ckeditor5-table/99
7f40831
Other: Add selection post-fixer improvements. Closes #1593.
jodator
Successfully merging a pull request may close this issue.
The case is #1331.
It should be possible to make such a selection:
because
div
is marked asisObject
(all objects are selectable).However, that does not work. The reason why it works in the demo I created in that ticket is because I accidentally added:
Which made this scenario fall into "selection is allowed in text" case.
The text was updated successfully, but these errors were encountered: