Suffix with units

pull/21833/head
David Baker 2016-01-14 16:13:50 +00:00
parent 7e5d4b8ce8
commit 4f21e2beb3
1 changed files with 6 additions and 6 deletions

View File

@ -16,8 +16,8 @@ limitations under the License.
var dis = require("./dispatcher"); var dis = require("./dispatcher");
var MIN_DISPATCH_INTERVAL = 500; var MIN_DISPATCH_INTERVAL_MS = 500;
var CURRENTLY_ACTIVE_THRESHOLD = 500; var CURRENTLY_ACTIVE_THRESHOLD_MS = 500;
/** /**
* This class watches for user activity (moving the mouse or pressing a key) * This class watches for user activity (moving the mouse or pressing a key)
@ -56,7 +56,7 @@ class UserActivity {
* (ie. within a few seconds) * (ie. within a few seconds)
*/ */
userCurrentlyActive() { userCurrentlyActive() {
return this.lastActivityAtTs > (new Date).getTime() - CURRENTLY_ACTIVE_THRESHOLD; return this.lastActivityAtTs > (new Date).getTime() - CURRENTLY_ACTIVE_THRESHOLD_MS;
} }
_onUserActivity(event) { _onUserActivity(event) {
@ -72,14 +72,14 @@ class UserActivity {
} }
this.lastActivityAtTs = (new Date).getTime(); this.lastActivityAtTs = (new Date).getTime();
if (this.lastDispatchAtTs < this.lastActivityAtTs - MIN_DISPATCH_INTERVAL) { if (this.lastDispatchAtTs < this.lastActivityAtTs - MIN_DISPATCH_INTERVAL_MS) {
this.lastDispatchAtTs = this.lastActivityAtTs; this.lastDispatchAtTs = this.lastActivityAtTs;
dis.dispatch({ dis.dispatch({
action: 'user_activity' action: 'user_activity'
}); });
if (!this.activityEndTimer) { if (!this.activityEndTimer) {
this.activityEndTimer = setTimeout( this.activityEndTimer = setTimeout(
this._onActivityEndTimer.bind(this), MIN_DISPATCH_INTERVAL this._onActivityEndTimer.bind(this), MIN_DISPATCH_INTERVAL_MS
); );
} }
} }
@ -87,7 +87,7 @@ class UserActivity {
_onActivityEndTimer() { _onActivityEndTimer() {
var now = (new Date).getTime(); var now = (new Date).getTime();
var targetTime = this.lastActivityAtTs + MIN_DISPATCH_INTERVAL; var targetTime = this.lastActivityAtTs + MIN_DISPATCH_INTERVAL_MS;
if (now >= targetTime) { if (now >= targetTime) {
dis.dispatch({ dis.dispatch({
action: 'user_activity_end' action: 'user_activity_end'