Sha256: 59d3fde89a847fdb49e55f5095189efc3bef163005932b8babb33569efc8bda2

Contents?: true

Size: 374 Bytes

Versions: 3

Compression:

Stored size: 374 Bytes

Contents

"use strict";

const EventImpl = require("./Event-impl").implementation;

class UIEventImpl extends EventImpl {
  initUIEvent(type, bubbles, cancelable, view, detail) {
    if (this._dispatchFlag) {
      return;
    }

    this.initEvent(type, bubbles, cancelable);
    this.view = view;
    this.detail = detail;
  }
}

module.exports = {
  implementation: UIEventImpl
};

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
learn_create-0.0.22 lib/templates/javascript_lab_template/node_modules/jsdom/lib/jsdom/living/events/UIEvent-impl.js
lanes-0.8.0 node_modules/jsdom/lib/jsdom/living/events/UIEvent-impl.js
select_all-rails-0.3.1 node_modules/jsdom/lib/jsdom/living/events/UIEvent-impl.js