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
The ForEach function is used, in particular, in the wpdiscuz wordpress plugin.
The problem can be solved by adding a line before scripts.
NodeList.prototype.forEach = Array.prototype.forEach;
Is there a way to insert this polyfill into omni.ja?
Or is it possible to incorporate it into the browser in some other way?
The text was updated successfully, but these errors were encountered:
Ok, we can't change the engine, but maybe we can add a "content-document-global-created" event for macros and inject a polyfill script?
$OnLoad event fires too late.
The ForEach function is used, in particular, in the wpdiscuz wordpress plugin.
The problem can be solved by adding a line before scripts.
NodeList.prototype.forEach = Array.prototype.forEach;
Is there a way to insert this polyfill into omni.ja?
Or is it possible to incorporate it into the browser in some other way?
The text was updated successfully, but these errors were encountered: