From 28a4d29934525c6a0bce5fdbe08b2abed8af8615 Mon Sep 17 00:00:00 2001 From: Gary Katsevman Date: Thu, 6 Feb 2014 17:04:58 -0500 Subject: [PATCH] enable user activity on components by default --- src/js/component.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/component.js b/src/js/component.js index eb7aaea284..05e65a4d13 100644 --- a/src/js/component.js +++ b/src/js/component.js @@ -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(); } }