Sha256: 07a88d60faca49fb3dba1f61dd808b2d708fe0047c785c609438eb885872ac88
Contents?: true
Size: 1.63 KB
Versions: 1
Compression:
Stored size: 1.63 KB
Contents
"use strict"; const EventInit = require("../generated/EventInit"); class EventImpl { constructor(args, privateData) { const type = args[0]; // TODO: Replace with destructuring const eventInitDict = args[1] || EventInit.convert(undefined); this.type = type; const wrapper = privateData.wrapper; for (const key in eventInitDict) { if (key in wrapper) { this[key] = eventInitDict[key]; } } this.target = null; this.currentTarget = null; this.eventPhase = 0; this._initializedFlag = true; this._stopPropagationFlag = false; this._stopImmediatePropagationFlag = false; this._canceledFlag = false; this._dispatchFlag = false; this.isTrusted = privateData.isTrusted || false; this.timeStamp = Date.now(); } get defaultPrevented() { return this._canceledFlag; } stopPropagation() { this._stopPropagationFlag = true; } stopImmediatePropagation() { this._stopPropagationFlag = true; this._stopImmediatePropagation = true; } preventDefault() { if (this.cancelable) { this._canceledFlag = true; } } _initialize(type, bubbles, cancelable) { this.type = type; this._initializedFlag = true; this._stopPropagationFlag = false; this._stopImmediatePropagationFlag = false; this._canceledFlag = false; this.isTrusted = false; this.target = null; this.bubbles = bubbles; this.cancelable = cancelable; } initEvent(type, bubbles, cancelable) { if (this._dispatchFlag) { return; } this._initialize(type, bubbles, cancelable); } } module.exports = { implementation: EventImpl };
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
select_all-rails-0.3.1 | node_modules/jsdom/lib/jsdom/living/events/Event-impl.js |