Closed
Description
In trackWindowScroll.js you are using normal event listeners. If you use Passive Event Listeners you get a better performance on scrolling:
https://developers.google.com/web/updates/2016/06/passive-event-listeners
All you have to do is to add a third parameter (true) to the listener.
Example:
window.addEventListener('resize', this.delayedScroll, true);
Best regards
Marcel