Skip to content

Commit

Permalink
enable user activity on components by default
Browse files Browse the repository at this point in the history
  • Loading branch information
gkatsev committed Feb 6, 2014
1 parent 9975ed4 commit 28a4d29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
}
Expand Down

0 comments on commit 28a4d29

Please sign in to comment.