mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 14:05:04 +08:00
Make scrolling count as user activity.
This commit is contained in:
parent
7913b0b465
commit
1c4d1d2507
@ -31,6 +31,9 @@ class UserActivity {
|
|||||||
start() {
|
start() {
|
||||||
document.onmousemove = this._onUserActivity.bind(this);
|
document.onmousemove = this._onUserActivity.bind(this);
|
||||||
document.onkeypress = this._onUserActivity.bind(this);
|
document.onkeypress = this._onUserActivity.bind(this);
|
||||||
|
// can't use document.scroll here because that's only the document
|
||||||
|
// itself being scrolled. Need to use addEventListener's useCapture.
|
||||||
|
window.addEventListener('scroll', this._onUserActivity.bind(this), true);
|
||||||
this.lastActivityAtTs = new Date().getTime();
|
this.lastActivityAtTs = new Date().getTime();
|
||||||
this.lastDispatchAtTs = 0;
|
this.lastDispatchAtTs = 0;
|
||||||
}
|
}
|
||||||
@ -41,6 +44,7 @@ class UserActivity {
|
|||||||
stop() {
|
stop() {
|
||||||
document.onmousemove = undefined;
|
document.onmousemove = undefined;
|
||||||
document.onkeypress = undefined;
|
document.onkeypress = undefined;
|
||||||
|
window.removeEventListener('scroll', this._onUserActivity.bind(this), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
_onUserActivity(event) {
|
_onUserActivity(event) {
|
||||||
|
Loading…
Reference in New Issue
Block a user