Fix data-on-input-this using onchange instead of oninput
This commit is contained in:
parent
4c5a88a822
commit
1508b82754
|
@ -236,7 +236,7 @@ window.addEventListener("DOMContentLoaded", function onSkinDCL() {
|
|||
console.error("Nothing found to bind to " + fnName);
|
||||
return;
|
||||
}
|
||||
el.onchange = window[fnName].bind(el, el);
|
||||
el.oninput = window[fnName].bind(el, el);
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue