1
0
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:
Gary Katsevman 2015-09-04 11:54:35 -07:00 committed by heff
parent ccb6b35291
commit 1f5a83dc23
2 changed files with 2 additions and 1 deletions

View File

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

View File

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