Fix #598 - arrow keys to navigate media; fix #481 - non-exact matches no longer

overshadow requirement for remote-lookup
This commit is contained in:
Eugen Rochko
2017-02-05 03:01:23 +01:00
parent 44fad0160f
commit 6cdcac1396
3 changed files with 25 additions and 2 deletions

View File

@ -44,7 +44,7 @@ const Lightbox = React.createClass({
componentDidMount () {
this._listener = e => {
if (e.key === 'Escape') {
if (this.props.isVisible && e.key === 'Escape') {
this.props.onCloseClicked();
}
};