shithub: mycel

ref: 2b0707b83858f8fecb4de49776126c482abfce34
dir: /domino-lib/CustomEvent.js/

View raw version
"use strict";
module.exports = CustomEvent;

var Event = require('./Event');

function CustomEvent(type, dictionary) {
  // Just use the superclass constructor to initialize
  Event.call(this, type, dictionary);
}
CustomEvent.prototype = Object.create(Event.prototype, {
  constructor: { value: CustomEvent }
});