Skip to content
Snippets Groups Projects
Commit ba090a6a authored by Matthew Hodgson's avatar Matthew Hodgson
Browse files

only dispatch user_activity event if the mouse actually moves (rather than the...

only dispatch user_activity event if the mouse actually moves (rather than the DOM moving under the mouse)
parent bed7d50a
No related merge requests found
......@@ -43,7 +43,18 @@ class UserActivity {
document.onkeypress = undefined;
}
_onUserActivity() {
_onUserActivity(event) {
if (event.screenX) {
if (event.screenX === this.lastScreenX &&
event.screenY === this.lastScreenY)
{
// mouse hasn't actually moved
return;
}
this.lastScreenX = event.screenX;
this.lastScreenY = event.screenY;
}
this.lastActivityAtTs = (new Date).getTime();
if (this.lastDispatchAtTs < this.lastActivityAtTs - MIN_DISPATCH_INTERVAL) {
this.lastDispatchAtTs = this.lastActivityAtTs;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment