Better date syntax

pull/21833/head
David Baker 2016-01-14 16:15:07 +00:00
parent 4f21e2beb3
commit 740c22238e
1 changed files with 3 additions and 3 deletions

View File

@ -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_MS; return this.lastActivityAtTs > new Date().getTime() - CURRENTLY_ACTIVE_THRESHOLD_MS;
} }
_onUserActivity(event) { _onUserActivity(event) {
@ -71,7 +71,7 @@ class UserActivity {
this.lastScreenY = event.screenY; this.lastScreenY = event.screenY;
} }
this.lastActivityAtTs = (new Date).getTime(); this.lastActivityAtTs = new Date().getTime();
if (this.lastDispatchAtTs < this.lastActivityAtTs - MIN_DISPATCH_INTERVAL_MS) { if (this.lastDispatchAtTs < this.lastActivityAtTs - MIN_DISPATCH_INTERVAL_MS) {
this.lastDispatchAtTs = this.lastActivityAtTs; this.lastDispatchAtTs = this.lastActivityAtTs;
dis.dispatch({ dis.dispatch({
@ -86,7 +86,7 @@ class UserActivity {
} }
_onActivityEndTimer() { _onActivityEndTimer() {
var now = (new Date).getTime(); var now = new Date().getTime();
var targetTime = this.lastActivityAtTs + MIN_DISPATCH_INTERVAL_MS; var targetTime = this.lastActivityAtTs + MIN_DISPATCH_INTERVAL_MS;
if (now >= targetTime) { if (now >= targetTime) {
dis.dispatch({ dis.dispatch({