Fix #167 - Enable cmd+enter on Mac to submit form
This commit is contained in:
		
							parent
							
								
									cda297450f
								
							
						
					
					
						commit
						73c142fb94
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -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();
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue