I have the case that I have hunted elements. Some of them never trigger out as they are always visible in many cases.
The out callback is not defined in this case. I have to create an array and set the visible state in the enter callback using the index of this array, use Array.every and manually call disconnect as they never trigger out.
So it is not necessary to still hunt the elements after this as just the enter callback is used.
I have the case that I have hunted elements. Some of them never trigger
out
as they are always visible in many cases.The
out
callback is not defined in this case. I have to create an array and set the visible state in the enter callback using the index of this array, useArray.every
and manually calldisconnect
as they never triggerout
.So it is not necessary to still hunt the elements after this as just the
enter
callback is used.You can see on https://sicherheit.daniel-ruf.de how I solved this without this fix.