Make linter happy.

(imported from commit 0c30f2ef176249cd1a06a21946e51a20d6ca7a32)
This commit is contained in:
Leo Franchi 2013-02-12 10:40:21 -05:00
parent 875e125fb9
commit 495f7835c8
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ var activity = (function () {
/* 5 minutes after no activity, idle regardless of focus */
var DEFAULT_IDLE_TIMEOUT = 5 * 60 * 1000 ;
/* 1 minute between keep-alive pings */
var ACTIVE_PING_INTERVAL = 1 * 60 * 1000;
var ACTIVE_PING_INTERVAL = 60 * 1000;
/* Twice the ping interval is the cutoff for dead clients */
var IDLE_THRESHOLD_SECS = 2 * ACTIVE_PING_INTERVAL / 1000;