Fix #167 - Enable cmd+enter on Mac to submit form
parent
5c306a0260
commit
534240240d
|
@ -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();
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue