diff --git a/source/UI/js/Form/Input.js b/source/UI/js/Form/Input.js index bce4e153..502675b4 100644 --- a/source/UI/js/Form/Input.js +++ b/source/UI/js/Form/Input.js @@ -309,6 +309,11 @@ Ox.Input = function(options, self) { click: function() { self.options.disabled && that.gainFocus(); }, + input: event => { + if (Ox.contains(['text', 'password'], self.options.type)) { + change(event) + } + }, blur: blur, change: change, focus: focus