Skip to content

Commit

Permalink
clears build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
karimMourra committed Aug 18, 2017
1 parent da65f8d commit a0dd6cc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/js/view/controls/controlbar.js
Expand Up @@ -604,7 +604,9 @@ export default class Controlbar {
instreamModel
.change('position', timeSlider.onPosition, timeSlider)
.change('duration', timeSlider.onDuration, timeSlider)
.change('duration', () => {timeSlider.streamType = 'VOD';}, timeSlider);
.change('duration', () => {
timeSlider.streamType = 'VOD';
}, timeSlider);
}

syncPlaybackTime(model) {
Expand Down

0 comments on commit a0dd6cc

Please sign in to comment.