Skip to content

Commit

Permalink
@heff added a default data attribute to fix the progress handle displ…
Browse files Browse the repository at this point in the history
…ay in IE8

closes #2547
fixes #2449
  • Loading branch information
heff committed Sep 3, 2015
1 parent 65b5a6e commit 4582e8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ CHANGELOG
* @heff fixed a number of console errors after testing ([view](https://github.com/videojs/video.js/pull/2513))
* @gkatsev made the sass files available via npm in src/css ([view](https://github.com/videojs/video.js/pull/2546))
* @heff removed playerOptions from plugin options because it created an inconsistency in plugin inits ([view](https://github.com/videojs/video.js/pull/2532))
* @heff added a default data attribute to fix the progress handle display in IE8 ([view](https://github.com/videojs/video.js/pull/2547))

--------------------

Expand Down
1 change: 1 addition & 0 deletions src/js/control-bar/progress-control/play-progress-bar.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class PlayProgressBar extends Component {

constructor(player, options){
super(player, options);
this.updateDataAttr();
this.on(player, 'timeupdate', this.updateDataAttr);
player.ready(Fn.bind(this, this.updateDataAttr));
}
Expand Down

0 comments on commit 4582e8a

Please sign in to comment.