-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Closed
Labels
Description
[Violation] Added non-passive event listener to a scroll-blocking 'touchstart' event. Consider marking event handler as 'passive' to make the page more responsive.
Our event dispatcher always attaches this events, regardless if they are used or not: https://github.com/emberjs/ember.js/blob/master/packages/ember-views/lib/system/event_dispatcher.js#L62-L65
We should most likely lazily install them as they are required.
wellington1993 and mehulkarwellington1993