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
playing
When the audio completes, the playing() signal is still true, so can't use the play button to trigger play again.
playing()
true
The playing signal defined here: https://github.com/solidjs-community/solid-primitives/blob/82245cf/packages/audio/dev/index.tsx#L70
The setPlaying will always set the playing to true, so it does not trigger play again: https://github.com/solidjs-community/solid-primitives/blob/82245cf/packages/audio/dev/index.tsx#L81
setPlaying
https://github.com/solidjs-community/solid-primitives/blob/main/packages/audio/dev/index.tsx
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
When the audio completes, the
playing()
signal is stilltrue
, so can't use the play button to trigger play again.The
playing
signal defined here:https://github.com/solidjs-community/solid-primitives/blob/82245cf/packages/audio/dev/index.tsx#L70
The
setPlaying
will always set theplaying
totrue
, so it does not trigger play again:https://github.com/solidjs-community/solid-primitives/blob/82245cf/packages/audio/dev/index.tsx#L81
Minimal Reproduction Link
https://github.com/solidjs-community/solid-primitives/blob/main/packages/audio/dev/index.tsx
The text was updated successfully, but these errors were encountered: