You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are situations when browsers put selection inside contenteditable=false elements (https://github.com/ckeditor/ckeditor5-image/issues/19) and we render inline filler there. Block fillers are blocked by getFillerOffset() but inline fillers are not blocked in any way there.
The solution might be to block rendering it if the nearest ancestor with contenteditable attribute has it set to false.
The text was updated successfully, but these errors were encountered:
This is strange because inline filler should be rendered only where the selection is. First of all, the collapsed selection should not be placed in not editable elements. Maybe we should fix the selection position to move it out of the not editable elements first?
There are situations when browsers put selection inside
contenteditable=false
elements (https://github.com/ckeditor/ckeditor5-image/issues/19) and we render inline filler there. Block fillers are blocked bygetFillerOffset()
but inline fillers are not blocked in any way there.The solution might be to block rendering it if the nearest ancestor with
contenteditable
attribute has it set tofalse
.The text was updated successfully, but these errors were encountered: