1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-10 00:28:34 +02:00

Allow to insert Tab in SQL textareas and send the form by Ctrl+Enter

This commit is contained in:
Jakub Vrana
2010-07-13 18:18:47 +02:00
parent ed7ed84dd5
commit 9929cc6796
4 changed files with 31 additions and 4 deletions

View File

@@ -124,7 +124,7 @@ function html_select($name, $options, $value = "", $onchange = true) {
* @return null
*/
function textarea($name, $value, $rows = 10, $cols = 80) {
echo "<textarea name='$name' rows='$rows' cols='$cols' style='width: 98%;' spellcheck='false'>" . h($value) . "</textarea>"; // spellcheck - not valid before HTML5
echo "<textarea name='$name' rows='$rows' cols='$cols' style='width: 98%;' spellcheck='false' onkeydown='return textareaKeydown(this, event);'>" . h($value) . "</textarea>"; // spellcheck - not valid before HTML5
}