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

enable user activity on components by default

This commit is contained in:
Gary Katsevman 2014-02-06 17:04:58 -05:00
parent 9975ed407a
commit 28a4d29934

View File

@ -66,7 +66,7 @@ vjs.Component = vjs.CoreObject.extend({
// Don't want to trigger ready here or it will before init is actually
// finished for all children that run this constructor
if (options.reportUserActivity) {
if (options.reportUserActivity !== false) {
this.enableUserActivity();
}
}