Commit 6277d747 by Szczork

add condition - log speed change / loading video

parent bf1b75f5
......@@ -338,6 +338,7 @@ function (HTML5Video, Resizer) {
newSpeed = parseFloat(newSpeed).toFixed(2).replace(/\.00$/, '.0');
if (this.speed != newSpeed) {
this.videoPlayer.log(
'speed_change_video',
{
......@@ -346,6 +347,7 @@ function (HTML5Video, Resizer) {
new_speed: newSpeed
}
);
}
this.setSpeed(newSpeed, true);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment