1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00

Fix #167 - Enable cmd+enter on Mac to submit form

This commit is contained in:
Eugen Rochko 2016-12-11 23:39:25 +01:00
parent cda297450f
commit 73c142fb94

View file

@ -95,7 +95,7 @@ const ComposeForm = React.createClass({
},
handleKeyUp (e) {
if (e.keyCode === 13 && e.ctrlKey) {
if (e.keyCode === 13 && (e.ctrlKey || (e.metaKey && e.metaKey === '⌘-'))) {
this.props.onSubmit();
}
},