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
In client.js, you have this section of code.
video.autoplay = true; //video.get(0).play(); video.play(); await timeout(MySet.duration); addClass(video, 'hidden'); await timeout(1000); video.pause(); video.load(); source.removeAttribute('src'); // empty source video.play(); video.removeChild(source); video.muted = true; callback();
I have a couple of questions.
Proposed changes:
video.load(); // Moved up to here video.play(); await timeout(MySet.duration); addClass(video, 'hidden'); await timeout(1000); video.pause(); source.removeAttribute('src'); // empty source video.removeChild(source); video.muted = true; callback();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In client.js, you have this section of code.
I have a couple of questions.
Proposed changes:
The text was updated successfully, but these errors were encountered: