mirror of
https://github.com/videojs/video.js.git
synced 2024-11-24 08:42:25 +02:00
@gkatsev fixed the default state of userActive
closes #2557 fixes #2550
This commit is contained in:
parent
ccb6b35291
commit
1f5a83dc23
@ -118,6 +118,7 @@ CHANGELOG
|
||||
* @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))
|
||||
* @heff added back the default cdn url for the swf ([view](https://github.com/videojs/video.js/pull/2533))
|
||||
* @gkatsev fixed the default state of userActive ([view](https://github.com/videojs/video.js/pull/2557))
|
||||
|
||||
--------------------
|
||||
|
||||
|
@ -199,7 +199,7 @@ class Player extends Component {
|
||||
|
||||
// When the player is first initialized, trigger activity so components
|
||||
// like the control bar show themselves if needed
|
||||
this.userActive_ = true;
|
||||
this.userActive(true);
|
||||
this.reportUserActivity();
|
||||
this.listenForUserActivity();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user