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) } },