Merge pull request #17 from rodrigobac/master

Fixes Issue #14
This commit is contained in:
Dan Abramov 2015-07-20 22:13:39 +03:00
commit e03e66c680

View File

@ -3,7 +3,7 @@ import LogMonitorEntry from './LogMonitorEntry';
export default class LogMonitor {
constructor() {
window.addEventListener('keypress', ::this.handleKeyPress);
window.addEventListener('keydown', ::this.handleKeyPress);
}
static propTypes = {
@ -76,7 +76,8 @@ export default class LogMonitor {
handleKeyPress(event) {
let { isVisible } = this.props.monitorState;
if (event.ctrlKey && event.keyCode === 8) {
if (event.ctrlKey && event.keyCode === 72) {
event.preventDefault();
if (isVisible) {
this.props.hide();
} else {