You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Analytics visibility tracking is using the IntersectionObserver internally to fire visible events.
The InOb fires and set intersectionRatio at 1 even when the element size is 0. This leads to element's visibility requests being sent even when it is not actually visible.
The fix is to check element's size before calculating its visibility state.
The text was updated successfully, but these errors were encountered:
From #29820
Analytics visibility tracking is using the IntersectionObserver internally to fire visible events.
The InOb fires and set intersectionRatio at 1 even when the element size is 0. This leads to element's visibility requests being sent even when it is not actually visible.
The fix is to check element's size before calculating its visibility state.
The text was updated successfully, but these errors were encountered: