] Added non-passive event listener to a scroll-blocking 'touchstart' event. Consider marking event handler as 'passive' to make the page more responsive. See https://www.chromestatus.com/feature/5745543795965952 code example
Example: Added non-passive event listener to a scroll-blocking 'wheel' event
document.addEventListener('touchstart', handler, {passive: true});