FEATURE: CTRL+ENTER and CMD+ENTER shortcut to submit the current message
This commit is contained in:
parent
7fb1b4dded
commit
3618e8b527
|
@ -107,9 +107,14 @@ Discourse.ComposerView = Discourse.View.extend(Ember.Evented, {
|
||||||
},
|
},
|
||||||
|
|
||||||
keyDown: function(e) {
|
keyDown: function(e) {
|
||||||
// If the user hit ESC
|
|
||||||
if (e.which === 27) {
|
if (e.which === 27) {
|
||||||
|
// ESC
|
||||||
this.get('controller').hitEsc();
|
this.get('controller').hitEsc();
|
||||||
|
return false;
|
||||||
|
} else if (e.which === 13 && (e.ctrlKey || e.metaKey)) {
|
||||||
|
// CTRL+ENTER or CMD+ENTER
|
||||||
|
this.get('controller').send('save');
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue