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
Some of our visitors seem to use browsers lacking support for requestAnimationFrame. We highlight on demand so it is not needed for them. Propose the following fix:
requestAnimationFrame(_.highlightAll, 0);
Changed to:
if (window.requestAnimationFrame) window.requestAnimationFrame(_.highlightAll, 0);
Regards,
Johan
The text was updated successfully, but these errors were encountered:
Do we really have to support IE9? We could also simply add a polyfill for requestAnimationFrame to the ie8 plugin, or create an ie9 plugin with the polyfill...
Hi,
Some of our visitors seem to use browsers lacking support for requestAnimationFrame. We highlight on demand so it is not needed for them. Propose the following fix:
requestAnimationFrame(_.highlightAll, 0);
Changed to:
if (window.requestAnimationFrame) window.requestAnimationFrame(_.highlightAll, 0);
Regards,
Johan
The text was updated successfully, but these errors were encountered: