input event breaks input change event for input fields with onchange handlers
This commit is contained in:
parent
cf3f3c4103
commit
4189c740b5
1 changed files with 2 additions and 0 deletions
|
@ -310,9 +310,11 @@ Ox.Input = function(options, self) {
|
||||||
self.options.disabled && that.gainFocus();
|
self.options.disabled && that.gainFocus();
|
||||||
},
|
},
|
||||||
input: event => {
|
input: event => {
|
||||||
|
/*
|
||||||
if (!self.options.autocomplete && Ox.contains(['text', 'password'], self.options.type)) {
|
if (!self.options.autocomplete && Ox.contains(['text', 'password'], self.options.type)) {
|
||||||
change(event)
|
change(event)
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
},
|
},
|
||||||
blur: blur,
|
blur: blur,
|
||||||
change: change,
|
change: change,
|
||||||
|
|
Loading…
Reference in a new issue