From b3a73dedbf777603fa26841d376f6fdea832cd3e Mon Sep 17 00:00:00 2001 From: j Date: Sun, 9 Jul 2023 20:14:05 +0530 Subject: [PATCH] no autocomplete fields --- source/UI/js/Form/Input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/UI/js/Form/Input.js b/source/UI/js/Form/Input.js index 502675b4..09ad1887 100644 --- a/source/UI/js/Form/Input.js +++ b/source/UI/js/Form/Input.js @@ -310,7 +310,7 @@ Ox.Input = function(options, self) { self.options.disabled && that.gainFocus(); }, input: event => { - if (Ox.contains(['text', 'password'], self.options.type)) { + if (!self.options.autocomplete && Ox.contains(['text', 'password'], self.options.type)) { change(event) } },