Skip to content
Snippets Groups Projects
Commit 389beedc authored by polesye's avatar polesye
Browse files

Fix speed change bug.

parent bd858b32
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,14 @@ function (HTML5Video, Resizer) {
function _initialize(state) {
var youTubeId;
// The function is called just once to apply pre-defined configurations
// by student before video starts playing. Waits until the video's metadata
// is loaded, which normally happens just after the video starts playing.
// Just after that configurations can be applied.
state.videoPlayer.ready = _.once(function () {
state.videoPlayer.onSpeedChange(state.speed);
});
if (state.videoType === 'youtube') {
state.videoPlayer.PlayerState = YT.PlayerState;
state.videoPlayer.PlayerState.UNSTARTED = -1;
......@@ -314,6 +322,8 @@ function (HTML5Video, Resizer) {
if (this.config.show_captions) {
this.trigger('videoCaption.play', null);
}
this.videoPlayer.ready();
}
function onUnstarted() { }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment