Commit d2c9b526 by Valera Rozuvan

Merge pull request #2274 from edx/valera/fix_video_code_duplication

Fix video code duplication.
parents 98eecf13 f0c3916b
......@@ -156,19 +156,13 @@ function () {
'ui-widget-header ' +
'ui-corner-all ' +
'slider-range'
}).css({
left: rangeParams.left,
width: rangeParams.width
});
}).css(rangeParams);
this.videoProgressSlider.sliderProgress
.after(this.videoProgressSlider.sliderRange);
} else {
this.videoProgressSlider.sliderRange
.css({
left: rangeParams.left,
width: rangeParams.width
});
.css(rangeParams);
}
}
......
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