mirror of
https://github.com/1024-lab/smart-admin.git
synced 2026-06-03 04:24:43 +00:00
15 lines
439 B
JavaScript
15 lines
439 B
JavaScript
//去除谷歌浏览器的scroll、wheel等事件警告
|
|
(function () {
|
|
if (typeof EventTarget !== 'undefined') {
|
|
let func = EventTarget.prototype.addEventListener;
|
|
EventTarget.prototype.addEventListener = function (type, fn, capture) {
|
|
this.func = func;
|
|
if (typeof capture !== 'boolean') {
|
|
capture = capture || {};
|
|
capture.passive = false;
|
|
}
|
|
this.func(type, fn, capture);
|
|
};
|
|
}
|
|
})();
|