mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-14 13:46:55 +03:00
commit
e03e66c680
|
@ -3,7 +3,7 @@ import LogMonitorEntry from './LogMonitorEntry';
|
||||||
|
|
||||||
export default class LogMonitor {
|
export default class LogMonitor {
|
||||||
constructor() {
|
constructor() {
|
||||||
window.addEventListener('keypress', ::this.handleKeyPress);
|
window.addEventListener('keydown', ::this.handleKeyPress);
|
||||||
}
|
}
|
||||||
|
|
||||||
static propTypes = {
|
static propTypes = {
|
||||||
|
@ -76,7 +76,8 @@ export default class LogMonitor {
|
||||||
handleKeyPress(event) {
|
handleKeyPress(event) {
|
||||||
let { isVisible } = this.props.monitorState;
|
let { isVisible } = this.props.monitorState;
|
||||||
|
|
||||||
if (event.ctrlKey && event.keyCode === 8) {
|
if (event.ctrlKey && event.keyCode === 72) {
|
||||||
|
event.preventDefault();
|
||||||
if (isVisible) {
|
if (isVisible) {
|
||||||
this.props.hide();
|
this.props.hide();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user