1
0
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:
AlbertHilb 2017-03-30 16:23:56 +02:00 committed by Ian Storm Taylor
parent 11de44acdd
commit 83a94f0737

View File

@ -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 = {}