mirror of
https://github.com/FlamedDogo99/EaglerMobile.git
synced 2024-12-22 07:14:15 -08:00
Removed dumb fix
This commit is contained in:
parent
60fe827c13
commit
bd26c5d2db
|
@ -65,14 +65,8 @@ Object.defineProperty(EventTarget.prototype, "addEventListener", {
|
||||||
}
|
}
|
||||||
return fn.apply(this, args);
|
return fn.apply(this, args);
|
||||||
}, ...rest);
|
}, ...rest);
|
||||||
} else if (type == 'blur' || type == 'mouseleave') {
|
|
||||||
_addEventListener.call(this, type, function(...args) {
|
|
||||||
return;
|
|
||||||
}, ...rest);
|
|
||||||
} else {
|
} else {
|
||||||
_addEventListener.call(this, type, function(...args) {
|
_addEventListener.call(this, type, fn, ...rest);
|
||||||
return fn.apply(this, args);
|
|
||||||
}, ...rest);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user