Fix #298 - Esc to close modal
parent
3114e55c7a
commit
d9232959df
|
@ -40,6 +40,18 @@ const Lightbox = React.createClass({
|
||||||
|
|
||||||
mixins: [PureRenderMixin],
|
mixins: [PureRenderMixin],
|
||||||
|
|
||||||
|
componentDidMount () {
|
||||||
|
this._listener = window.addEventListener('keyup', e => {
|
||||||
|
if (e.key === 'Escape') {
|
||||||
|
this.props.onCloseClicked();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
componentWillUnmount () {
|
||||||
|
window.removeEventListener(this._listener);
|
||||||
|
},
|
||||||
|
|
||||||
render () {
|
render () {
|
||||||
const { intl, isVisible, onOverlayClicked, onCloseClicked, children } = this.props;
|
const { intl, isVisible, onOverlayClicked, onCloseClicked, children } = this.props;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue