Fix data-on-input-this using onchange instead of oninput

This commit is contained in:
Isaac Connor 2020-07-29 16:40:57 -04:00
parent 4c5a88a822
commit 1508b82754
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ window.addEventListener("DOMContentLoaded", function onSkinDCL() {
console.error("Nothing found to bind to " + fnName); console.error("Nothing found to bind to " + fnName);
return; return;
} }
el.onchange = window[fnName].bind(el, el); el.oninput = window[fnName].bind(el, el);
}); });
}); });