idle-tracker
Version:
Tiny pure Javascript library to track browser inactivity
18 lines (17 loc) • 343 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const ACTIVE_EVENTS = [
'change',
'keydown',
'mousedown',
'mousemove',
'mouseup',
'orientationchange',
'resize',
'scroll',
'touchend',
'touchmove',
'touchstart',
'visibilitychange',
];
exports.default = ACTIVE_EVENTS;