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
When looping, the default startAt time is 1s instead of 0, and setting startAt=0 explicitly does not help. This is due to the following line:
jquery.mb.YTPlayer/src/jquery.mb.YTPlayer.src.js
Line 2321 in 6fc1ce6
where a 0 value for startAt is falsey and thus get replaced with 1.
Perhaps change this to:
YTPlayer.opt.startAt = (YTPlayer.opt.startAt !== undefined) ? YTPlayer.opt.startAt : 1;
?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When looping, the default startAt time is 1s instead of 0, and setting startAt=0 explicitly does not help. This is due to the following line:
jquery.mb.YTPlayer/src/jquery.mb.YTPlayer.src.js
Line 2321 in 6fc1ce6
where a 0 value for startAt is falsey and thus get replaced with 1.
Perhaps change this to:
?
The text was updated successfully, but these errors were encountered: