focus message composer when window gets focus

This commit is contained in:
David Baker 2015-07-07 13:30:38 +01:00
parent 9f37196eb7
commit 00dd1e180a

View file

@ -42,6 +42,7 @@ module.exports = {
} }
this.focusComposer = false; this.focusComposer = false;
document.addEventListener("keydown", this.onKeyDown); document.addEventListener("keydown", this.onKeyDown);
window.addEventListener("focus", this.onFocus);
}, },
componentWillUnmount: function() { componentWillUnmount: function() {
@ -127,6 +128,10 @@ module.exports = {
break; break;
} }
} }
},
onFocus: function(ev) {
dis.dispatch({action: 'focus_composer'});
} }
}; };