mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-04-04 05:22:34 +02:00
When editor contains nested editable elements, in some situations, (#693)
the focus goes to those elements. In firefox, this causes issues with keyboard navigation and therefore it must be prevented.
This commit is contained in:
parent
11de44acdd
commit
83a94f0737
@ -290,6 +290,13 @@ class Content extends React.Component {
|
||||
if (this.props.readOnly) return
|
||||
if (this.tmp.isCopying) return
|
||||
if (!this.isInContentEditable(event)) return
|
||||
// COMPAT: When editor contains nested editable elements, in some situations,
|
||||
// the focus goes to those elements. In Firefox, this must be prevented
|
||||
// because it results in issues with keyboard navigation. (2017/03/30)
|
||||
if (IS_FIREFOX && event.target !== this.element) {
|
||||
this.element.focus()
|
||||
return
|
||||
}
|
||||
|
||||
const data = {}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user