shithub: mycel

ref: 49e401ef4b569e9c6b305648af6f7e652d575d2f
dir: /domino/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 }
});