1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-17 10:46:00 +02:00

@heff added a default data attribute to fix the progress handle display in IE8

closes #2547
fixes #2449
This commit is contained in:
heff 2015-09-03 13:54:02 -07:00
parent 65b5a6e298
commit 4582e8a003
2 changed files with 2 additions and 0 deletions

View File

@ -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))
--------------------

View File

@ -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));
}