-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
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
feat: Make gap jump timer time configurable #5525
Conversation
externs/shaka/player.js
Outdated
* The maximum distance (in seconds) before a gap when we'll automatically | ||
* jump. This value defaults to <code>0.5</code>. | ||
* @property {numebr} gapJumpTimerTime | ||
* The polling time in seconds to check for gaps in the media. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you mention the default of 0.25 seconds? It'd be helpful, because it implicitly tells the person reading the docs what the unit of the property is (seconds, not milliseconds), in addition to giving them a sense of what the default behavior is obviously.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
externs/shaka/player.js
Outdated
* Tizen, Chromecast that value defaults value is <code>0.5</code> | ||
* The maximum distance (in seconds) before a gap when we'll automatically | ||
* jump. This value defaults to <code>0.5</code>. | ||
* @property {numebr} gapJumpTimerTime |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
numebr
-> number
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
Incremental code coverage: No instrumented code was changed. |
Closes #3008