commit
d16b6b1432
1 changed files with 24 additions and 0 deletions
24
patches/event-target-polyfill+0.0.3.patch
Normal file
24
patches/event-target-polyfill+0.0.3.patch
Normal file
|
@ -0,0 +1,24 @@
|
|||
diff --git a/node_modules/event-target-polyfill/index.js b/node_modules/event-target-polyfill/index.js
|
||||
index 82f7f42..c7b65b7 100644
|
||||
--- a/node_modules/event-target-polyfill/index.js
|
||||
+++ b/node_modules/event-target-polyfill/index.js
|
||||
@@ -12,19 +12,6 @@ function isConstructor(fn) {
|
||||
return true;
|
||||
}
|
||||
|
||||
-if (typeof root.Event !== "function" || !isConstructor(root.Event)) {
|
||||
- root.Event = (function () {
|
||||
- function Event(type, options) {
|
||||
- this.bubbles = !!options && !!options.bubbles;
|
||||
- this.cancelable = !!options && !!options.cancelable;
|
||||
- this.composed = !!options && !!options.composed;
|
||||
- this.type = type;
|
||||
- }
|
||||
-
|
||||
- return Event;
|
||||
- })();
|
||||
-}
|
||||
-
|
||||
if (typeof root.EventTarget === "undefined" || !isConstructor(root.Event)) {
|
||||
root.EventTarget = (function () {
|
||||
function EventTarget() {
|
Loading…
Reference in a new issue