custom-event.js 311 B

1234567891011121314
  1. "use strict";
  2. var Event = require("./event");
  3. function CustomEvent(type, customData, target) {
  4. this.initEvent(type, false, false, target);
  5. this.detail = customData.detail || null;
  6. }
  7. CustomEvent.prototype = new Event();
  8. CustomEvent.prototype.constructor = CustomEvent;
  9. module.exports = CustomEvent;