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
OnlineJS calls the checkOnLine function, which in turn calls the checkOnLine function, which calls function checkConnectionWithRequest with the async parameter set to false.
The browser now gives the following warning: "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/." (latest Opera/Chrome/Firefox).
Synchronous XHR has been deprecated since Firefox 30 (June 2014) and Chrome 40 (November 2014)
Although it seems that this will not be removed, it is still deprecated behaviour and should not be used.
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
checkOnLine
function, which in turn calls thecheckOnLine
function, which calls functioncheckConnectionWithRequest
with theasync
parameter set tofalse
.The browser now gives the following warning: "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/." (latest Opera/Chrome/Firefox).
Synchronous XHR has been deprecated since Firefox 30 (June 2014) and Chrome 40 (November 2014)
Although it seems that this will not be removed, it is still deprecated behaviour and should not be used.
The text was updated successfully, but these errors were encountered: