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