Fixed: (UI) Use `event.composedPath()`

pull/1529/head
Bogdan 2 years ago
parent f90d66376e
commit 88329ff104

@ -84,6 +84,10 @@ class SearchIndex extends Component {
}
}
componentWillUnmount() {
window.removeEventListener('keyup', this.onKeyUp);
}
//
// Control
@ -192,7 +196,8 @@ class SearchIndex extends Component {
onKeyUp = (event) => {
const jumpBarItems = this.state.jumpBarItems.order;
if (event.path.length === 4) {
if (event.composedPath && event.composedPath().length === 4) {
if (event.keyCode === keyCodes.HOME && event.ctrlKey) {
this.setState({ jumpToCharacter: jumpBarItems[0] });
}

Loading…
Cancel
Save