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:
parent
65b5a6e298
commit
4582e8a003
@ -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))
|
||||
|
||||
--------------------
|
||||
|
||||
|
@ -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));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user