You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<script type="module">
import { InputSpinner } from "./input-spinner.js"
const inputSpinnerElements = document.querySelectorAll("input[type='number']")
for (const inputSpinnerElement of inputSpinnerElements) {
new InputSpinner(inputSpinnerElement)
}
</script>
If I disable the new InputSpinner(inputSpinnerElement) line to revert the input element back to normal HTML element, scrolling works fine and changes the current value.
The text was updated successfully, but these errors were encountered:
Hi! Thanks for the great library! I use it with Bootstrap 5.3. I noticed scrolling doesn't change values. Is there a way to enable it?
If I disable the
new InputSpinner(inputSpinnerElement)
line to revert the input element back to normal HTML element, scrolling works fine and changes the current value.The text was updated successfully, but these errors were encountered: