Skip to content

Commit

Permalink
fix: console error on ads seekbar hover (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Ziv committed Feb 27, 2018
1 parent 004f2e9 commit 1d23872
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ class SeekBarAdsContainer extends BaseComponent {
}}
updateCurrentTime={data => { // eslint-disable-line no-unused-vars
}}
updateSeekbarHoverActive={data => this.props.updateSeekbarHoverActive(data)}
adBreak={props.adBreak}
currentTime={props.currentTime}
duration={props.duration}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ class SeekBarLivePlaybackContainer extends BaseComponent {
changeCurrentTime={time => this.player.currentTime = time}
playerPoster={this.props.poster}
updateSeekbarDraggingStatus={data => this.props.updateSeekbarDraggingStatus(data)}
updateSeekbarHoverActive={data => this.props.updateSeekbarHoverActive(data)}
updateCurrentTime={data => this.props.updateCurrentTime(data)}
isDvr={this.props.isDvr}
currentTime={this.props.currentTime}
Expand Down

0 comments on commit 1d23872

Please sign in to comment.