diff --git a/common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js b/common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js index 740a1aa63d..e8cb1e15ed 100644 --- a/common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js +++ b/common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js @@ -151,7 +151,7 @@ function () { $.each(this.videoSpeedControl.speeds, function(index, speed) { var link, listItem; - link = '' + speed + 'x'; + link = '' + speed + 'x'; listItem = $('
  • ' + link + '
  • '); @@ -162,11 +162,7 @@ function () { _this.videoSpeedControl.videoSpeedsEl.prepend(listItem); }); - this.videoSpeedControl.videoSpeedsEl.find('a') - .on('click', this.videoSpeedControl.changeVideoSpeed); - - // TODO: After the control was re-rendered, we should attach 'focus' - // and 'blur' events once more. + _bindHandlers(this); } });