You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3 vuotta sitten
12345678910111213
  1. module.exports = Event
  2. function Event(family) {}
  3. Event.prototype.initEvent = function _Event_initEvent(type, bubbles, cancelable) {
  4. this.type = type
  5. this.bubbles = bubbles
  6. this.cancelable = cancelable
  7. }
  8. Event.prototype.preventDefault = function _Event_preventDefault() {
  9. }