This repository has been archived by the owner on Jun 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Fake selection container was not appended to the new fake selection editable when fake selection changes #1679
Merged
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
539a0aa
Fix: Fake selection container was not appended to the new fake select…
scofalik cae80cb
Tests: Re-written test so it is less prone to browser quirks.
scofalik 8bc959e
Merge branch 'master' into t/ckeditor5/1523
jodator 4dcbfa3
Simplified the logic.
Reinmar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This
if
(and belowif
) could simply beSo simpler, but I am not sure if we want to remove and append dom element (
container
) if there's no need for it. Can it break something? If not, we can go with simpler solution.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd want to avoid moving it around. That may do some strange things to focus. I even considered leaving just one line:
domRoot.appendChild( container );
(and no conditions), but I'm afraid what it may do. It depends on how it's implemented internally in the browsers.However, if you feel braver than I, then you can test it :D
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I may feel brave but I also feel lazy.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AFAICS:
editor-classic
passesTested on Chrome only though.
ps.: to be clear:
![selection_201](https://user-images.githubusercontent.com/247363/52964194-0a2dc100-33a2-11e9-9c0f-44140670d266.png)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Which means nothing ;) It has to be tested thoroughly in all browsers. That's why I'd choose the safe path myself.