mirror of
https://github.com/vrana/adminer.git
synced 2025-08-27 00:05:18 +02:00
Add a new column in alter table on key press
This commit is contained in:
@@ -317,11 +317,15 @@ function editingAddRow(button, focus) {
|
||||
tags[0].onchange = function () {
|
||||
editingNameChange(tags[0]);
|
||||
};
|
||||
tags[0].onkeypress = function () {
|
||||
};
|
||||
row.parentNode.insertBefore(row2, row.nextSibling);
|
||||
if (focus) {
|
||||
input.onchange = function () {
|
||||
editingNameChange(input);
|
||||
};
|
||||
input.onkeypress = function () {
|
||||
};
|
||||
input.focus();
|
||||
}
|
||||
added += '0';
|
||||
|
Reference in New Issue
Block a user