ng2-idle-core
Version:
ng-idle for Angular 2+ core module
56 lines • 2.43 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { EventTargetInterruptSource } from './eventtargetinterruptsource';
/*
* An interrupt source that uses events on the document element (html tag).
*/
var /*
* An interrupt source that uses events on the document element (html tag).
*/
DocumentInterruptSource = /** @class */ (function (_super) {
__extends(DocumentInterruptSource, _super);
function DocumentInterruptSource(events, options) {
return _super.call(this, document.documentElement, events, options) || this;
}
/*
* Checks to see if the event should be filtered.
* @param event - The original event object.
* @return True if the event should be filtered (don't cause an interrupt); otherwise, false.
*/
/*
* Checks to see if the event should be filtered.
* @param event - The original event object.
* @return True if the event should be filtered (don't cause an interrupt); otherwise, false.
*/
DocumentInterruptSource.prototype.filterEvent = /*
* Checks to see if the event should be filtered.
* @param event - The original event object.
* @return True if the event should be filtered (don't cause an interrupt); otherwise, false.
*/
function (event) {
// some browser bad input hacks
if (event.type === 'mousemove'
// fix for Chrome destop notifications
&& ((event.originalEvent && event.originalEvent.movementX === 0 &&
event.originalEvent.movementY === 0)
// fix for webkit fake mousemove
|| (event.movementX !== void 0 && !event.movementX || !event.movementY))) {
return true;
}
return false;
};
return DocumentInterruptSource;
}(EventTargetInterruptSource));
/*
* An interrupt source that uses events on the document element (html tag).
*/
export { DocumentInterruptSource };
//# sourceMappingURL=documentinterruptsource.js.map