diff --git a/adminer/static/functions.js b/adminer/static/functions.js index ca2ddbc4..e5150e4d 100644 --- a/adminer/static/functions.js +++ b/adminer/static/functions.js @@ -178,6 +178,7 @@ function textareaKeypress(target, event, tab, button) { } } if (event.ctrlKey && (event.keyCode == 13 || event.keyCode == 10) && !event.altKey && !event.metaKey) { // shiftKey allowed + target.blur(); if (button) { button.click(); } else if (!target.form.onsubmit || target.form.onsubmit() !== false) {