From e4f4545ad3871168666daa7d9d5a6aa3f78e2082 Mon Sep 17 00:00:00 2001 From: Tony Yang Date: Sun, 2 Jun 2019 03:24:27 +0800 Subject: [PATCH] minor fix --- admin/component/config.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/admin/component/config.js b/admin/component/config.js index 68e2168..f5cd2bf 100644 --- a/admin/component/config.js +++ b/admin/component/config.js @@ -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) { @@ -109,4 +110,4 @@ } } }); -})(); +})(); \ No newline at end of file