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.
22 lines
520 B
22 lines
520 B
'use strict'; |
|
|
|
var Event = function(eventType, options) { |
|
this.type = eventType; |
|
for (var key in options) |
|
this[key] = options[key]; |
|
}; |
|
|
|
Event.prototype.initEvent = function(eventType, canBubble, cancelable) { |
|
this.type = eventType; |
|
this.bubbles = canBubble; |
|
this.cancelable = cancelable; |
|
}; |
|
|
|
Event.prototype.stopPropagation = function() {}; |
|
Event.prototype.preventDefault = function() {}; |
|
|
|
Event.CAPTURING_PHASE = 1; |
|
Event.AT_TARGET = 2; |
|
Event.BUBBLING_PHASE = 3; |
|
|
|
module.exports = Event;
|
|
|