1
0
mirror of https://github.com/videojs/video.js.git synced 2025-02-04 11:43:27 +02:00

Allow per-player setting of inactivityTimeout

This commit is contained in:
Andreas Knab 2014-08-12 13:16:47 +02:00 committed by Andreas Knab
parent 3cfbf94245
commit 0b4737d209

View File

@ -1624,7 +1624,7 @@ vjs.Player.prototype.listenForUserActivity = function(){
if (!this.userActivity_) {
this.userActive(false);
}
}), vjs.options['inactivityTimeout']);
}), this.options()['inactivityTimeout']);
}
}), 250);