We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This input doesn't behave as it should:
When setting the slider like this, we don't hear anything anymore (here):
The problem comes from that the value is cast into an int in the event listener callback (also happens in #117).
rateControl.addEventListener( "input", (ev) => { playbackRate = parseInt(ev.target.value, 10); }, false );
It was written to have a 0.1 step:
<section class="controls"> <label for="rate">Rate</label> <input name="rate" id="rate" type="range" min="0.1" max="2" value="1" step="0.1" /> </section>
Since I identified what causes the issue in the code I'd be happy to work on a fix + updating the doc.
No response
The text was updated successfully, but these errors were encountered:
Thanks a lot for reporting it! There's a PR open which should fix this
Sorry I missed this, would you like to update the doc after this is merged?
Sorry, something went wrong.
Yes sure, I'd love to
Great, feel free to ping me on the PR when you get around to it.
Successfully merging a pull request may close this issue.
What information was incorrect, unhelpful, or incomplete?
This input doesn't behave as it should:
What did you expect to see?
When setting the slider like this, we don't hear anything anymore (here):
The problem comes from that the value is cast into an int in the event listener callback (also happens in #117).
It was written to have a 0.1 step:
Since I identified what causes the issue in the code I'd be happy to work on a fix + updating the doc.
Do you have any supporting links, references, or citations?
No response
Do you have anything more you want to share?
No response
The text was updated successfully, but these errors were encountered: