diff --git a/boards/static/js/form.js b/boards/static/js/form.js --- a/boards/static/js/form.js +++ b/boards/static/js/form.js @@ -21,7 +21,7 @@ var form = $('#form'); $('textarea').keypress(function(event) { - if (event.which == 13) { + if (event.which == 13 && event.ctrlKey) { form.submit(); } }); \ No newline at end of file