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
Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check http://xhr.spec.whatwg.org/.
from
req.open("GET", uri, FALSE);
i know the line above that one says:
// sadly, this has to be blocking to allow for a graceful degrading API
but is there a solution to fix this warning?
The text was updated successfully, but these errors were encountered:
I have tried to change that call to req.open("GET", uri, TRUE); but I get the following error (instead of warning): Unable to load localization data: <myLocalizationFile.json>
Hi! i'm getting this error:
Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check http://xhr.spec.whatwg.org/.
from
i know the line above that one says:
// sadly, this has to be blocking to allow for a graceful degrading API
but is there a solution to fix this warning?
The text was updated successfully, but these errors were encountered: