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
I just tested the following case where loading multiple broken urls with one correct url resolves in a successful load.
const sound = sono.load({ src: [ '/assets/audio/dnb-loop.mp3', '/assets/audio/dnb-loop.gg', '/assets/audio/dnb-loop.pus' ], onComplete: () => { console.log('loaded'); // eslint-disable-line no-console window.testCase.loaded = true; }, onError: () => { console.log('error'); // eslint-disable-line no-console window.testCase.loaded = false; } });
Ideally the load should fail if any of the files fails to load. What do you think @ianmcgregor ?
The text was updated successfully, but these errors were encountered:
ianmcgregor
No branches or pull requests
I just tested the following case where loading multiple broken urls with one correct url resolves in a successful load.
Ideally the load should fail if any of the files fails to load. What do you think @ianmcgregor ?
The text was updated successfully, but these errors were encountered: