Update ACE

This commit is contained in:
Jordi Boggiano
2012-06-14 18:24:02 +02:00
parent 755e68ed46
commit 89841d8a6a
3 changed files with 6 additions and 6 deletions
+2 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+3 -4
View File
@@ -104,11 +104,10 @@
editor.commands.addCommand({ editor.commands.addCommand({
name: 'submitForm', name: 'submitForm',
bindKey: { bindKey: {
win: 'Ctrl-Enter|Alt-Enter', win: 'Ctrl-Return|Alt-Return',
mac: 'Command-Enter|Alt-Enter', mac: 'Command-Return|Alt-Return'
sender: 'editor'
}, },
exec: function(env, args, request) { exec: function(editor) {
$('form').submit(); $('form').submit();
} }
}); });