]> git.joonet.de Git - adminer.git/commitdiff
Fix fieldChange() after 6353a898
authorJakub Vrana <jakub@vrana.cz>
Fri, 12 Jan 2018 20:49:45 +0000 (21:49 +0100)
committerJakub Vrana <jakub@vrana.cz>
Fri, 12 Jan 2018 20:49:45 +0000 (21:49 +0100)
adminer/static/functions.js

index 0b475f826dc7b9422b382b9d80b7bf78e0f35325..883edcb3bb5108ad475eb82ac38f5340793e6709 100644 (file)
@@ -549,7 +549,7 @@ function fieldChange() {
        }
        // keep value in <select> (function)
        parentTag(this, 'table').appendChild(row);
-       this.onchange = function () { };
+       this.oninput = function () { };
 }