-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
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
Arrow navigation broken in Firefox #2124
Comments
Related: #2222. Also related: pressing arrow twice in empty editable. Looking for an alternative solution that may give a better experience too. |
@iseulde part of the problem with this issue is around links. When you left or right arrow through the TinyMCE editor, as it gets to a link the cursor position stays the same when it changes the style to display the link. That causes this code to assume the beginning or end of the block has been reached: gutenberg/editor/modes/visual-editor/block.js Line 294 in 595efd8
A different approach to handling this would be required though. Maybe a custom event or a callback prop on the block to say when the end of editor has been reached? |
I should have linked to the issues. |
should be fixed by #2424 |
…ependencies Update react-native-video dependency to remove Apache 2.0 dependencies
To reproduce, create e.g. two paragraphs in Firefox and try to use the arrow keys to move the caret from one to another. Normally this should work. In Firefox it does not. The selection API probably behaves a bit different there, though I'm pretty sure it used to work.
The text was updated successfully, but these errors were encountered: