minor fix

This commit is contained in:
Tony Yang 2019-06-02 03:24:27 +08:00
parent 61eba79770
commit e4f4545ad3
Signed by: t510599
GPG Key ID: D88388851C28715D

View File

@ -24,7 +24,8 @@
};
let formContainer = create('div'); formContainer.className = "ts form";
let form = create('form'); form.method = "POST"; form.action = "ajax/config.php"; form.name = "config"; form.id = "config";
let form = create('form'); form.method = "POST"; form.action = "ajax/config.php"; form.name = "config"; form.id = "config"; form.className = "clearfix";
form.autocomplete = "nope";
for (key in data) {
if (["name", "limit", "register"].indexOf(key) != -1) {