Does anyone know what the angular equivalent of mousewheel
is?
I basically need to be able to do the following in Angular but can't find much information about it
$(document).bind('mousewheel', function(e) {...
The website I am working on has overflow: hidden
on it, which means there is no scrollbar and window scrolling won't work. I just need to be able to detect a scroll event to fire a function. Onscroll only works when the scrollbar actually moves
Thanks for the help