mirror of https://github.com/vector-im/riot-web
parent
78e7272344
commit
360f1cd250
|
@ -59,8 +59,10 @@ export default React.createClass({
|
||||||
|
|
||||||
// Don't let key down events get any further, so they only trigger this and nothing more
|
// Don't let key down events get any further, so they only trigger this and nothing more
|
||||||
_onKeyDown: function(e) {
|
_onKeyDown: function(e) {
|
||||||
e.stopPropagation();
|
if (e.keyCode === KeyCode.ESCAPE) {
|
||||||
e.preventDefault();
|
e.stopPropagation();
|
||||||
|
e.preventDefault();
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
// Must be when the key is released (and not pressed) otherwise componentWillUnmount
|
// Must be when the key is released (and not pressed) otherwise componentWillUnmount
|
||||||
|
|
Loading…
Reference in New Issue