From c5b594d067480735782b7195b870256dde64c8ee Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Tue, 1 Feb 2011 14:11:25 +0100 Subject: [PATCH] Call onchange --- adminer/static/functions.js | 1 + 1 file changed, 1 insertion(+) 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) {