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
When using IOlazy with IntersectionObserver Polyfill in Safari 11 the Polyfill’s _parseRootMargin method crashes with a TypeError e.split is not a function. (In 'e.split(/\s+/)', 'e.split' is undefined).
This is caused by IOlazypassing rootMargin as Array which can not work with the polyfill.
Please update IOlazy class to pass rootMargin as String which is – as far as I can tell – expected in the spec, too.
The text was updated successfully, but these errors were encountered:
When using IOlazy with
IntersectionObserver
Polyfill in Safari 11 the Polyfill’s_parseRootMargin
method crashes with a TypeErrore.split is not a function. (In 'e.split(/\s+/)', 'e.split' is undefined)
.This is caused by IOlazy passing
rootMargin
as Array which can not work with the polyfill.Please update IOlazy class to pass
rootMargin
as String which is – as far as I can tell – expected in the spec, too.The text was updated successfully, but these errors were encountered: