Explicitly set passive:false for wheel event handlers to supress console warnings

This commit is contained in:
Mark Salsbery 2021-09-24 16:20:04 -07:00
parent f097808c95
commit 9c2f46cb19

View File

@ -1463,7 +1463,7 @@
tracker.element,
event,
delegate[ event ],
false
event === $.MouseTracker.wheelEventName ? { passive: false, capture: false } : false
);
}