You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 24, 2023. It is now read-only.
Describe the bug
In lighthouse, there is a warning concerning event listeners :
Does not use passive listeners to improve scrolling performance
Consider marking your touch and wheel event listeners as passive to improve your page's scroll performance.
Describe the bug
In lighthouse, there is a warning concerning event listeners :
Code
Lines 202-207
this.$refs.track.addEventListener('touchstart', this.handleMouseDown)
The warning disappears by adding
{passive : true}
Ie for line 202, the code becomes
this.$refs.track.addEventListener('touchstart', this.handleMouseDown, {passive : true})
Regards
The text was updated successfully, but these errors were encountered: