Hello! I am sorry for the delay
Have you seen this topic?
Using { passive: false }
instead of false
as the third argument in addEventListener
may be enough. Your code looks minified, but (in minified form) it may be something like:
function u(e,t,n){window.addEventListener(e,t,n||!1)}
→
function u(e,t,n){window.addEventListener(e,t,{passive:n||!1})}