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
Looking to optimize the site's performance and that of the homepage specifically, the Lighthouse tool in Chromium browsers has made some suggestions. Some of these will have repercussions throughout the app so we're going to make them their own tickets.
Recommendation: 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. details
Overview
We could add , {passive: true} to the scroll listeners.
Benefit (the 80 of 80/20)
It's recommended but not sure know who might notice
Effort (the 20 of 80/20)
Minimal
Complications
Being that these are third-party code (e.g. recaptcha), we may not be able to do this (like if the listeners are automatic and the code doesn't give us an option for passive)
Would just need to check that recaptcha and other scroll-listeners still work
Background
Looking to optimize the site's performance and that of the homepage specifically, the Lighthouse tool in Chromium browsers has made some suggestions. Some of these will have repercussions throughout the app so we're going to make them their own tickets.
Recommendation: 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. detailsOverview
We could add
, {passive: true}
to the scroll listeners.Benefit (the 80 of 80/20)
It's recommended but not sure know who might notice
Effort (the 20 of 80/20)
Minimal
Complications
Related tickets
The text was updated successfully, but these errors were encountered: