Loop will happen when browser round a number upward to its nearest integer.
e.g.
if currentScroll = 2
then (currentScroll - (currentScroll / 5)) = 1.6
In chrome it will rounded to 1, but in ie11 it will be rounded to 2
So on next step currentScroll will equal 2 - it's loop
Loop will happen when browser round a number upward to its nearest integer. e.g. if currentScroll = 2 then (currentScroll - (currentScroll / 5)) = 1.6 In chrome it will rounded to 1, but in ie11 it will be rounded to 2 So on next step currentScroll will equal 2 - it's loop
Could you please fix asap