Quiero enlazar para cerrar la escape
ventana emergente de arranque de reacción activa al presionar. Aquí está el código
_handleEscKey:function(event){
console.log(event);
if(event.keyCode == 27){
this.state.activePopover.hide();
}
},
componentWillMount:function(){
BannerDataStore.addChangeListener(this._onchange);
document.addEventListener("click", this._handleDocumentClick, false);
document.addEventListener("keyPress", this._handleEscKey, false);
},
componentWillUnmount: function() {
BannerDataStore.removeChangeListener(this._onchange);
document.removeEventListener("click", this._handleDocumentClick, false);
document.removeEventListener("keyPress", this._handleEscKey, false);
},
Pero no se registra nada en la consola cuando presiono cualquier tecla. Intenté escuchar eso en la ventana también y con diferentes casos. 'Keypress', 'keyup', etc. pero parece que estoy haciendo algo mal.