mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
focus message composer when window gets focus
This commit is contained in:
parent
9f37196eb7
commit
00dd1e180a
@ -42,6 +42,7 @@ module.exports = {
|
||||
}
|
||||
this.focusComposer = false;
|
||||
document.addEventListener("keydown", this.onKeyDown);
|
||||
window.addEventListener("focus", this.onFocus);
|
||||
},
|
||||
|
||||
componentWillUnmount: function() {
|
||||
@ -127,6 +128,10 @@ module.exports = {
|
||||
break;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
onFocus: function(ev) {
|
||||
dis.dispatch({action: 'focus_composer'});
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user