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
Cettia JavaScript Client's browser support policy has been the same with the one of jQuery 1.x, and the one of jQuery Compat 3.0 was supposed to replace the one of jQuery 1.x. However, as jQuery team announces the death of jQuery Compat, now the browser support of jQuery 3.0 should be used so we don't need to support IE 6-8. (FYI, I thought it's a waste of time to try to support browsers where jQuery doesn't work)
The following fallback can be dropped:
util.createXMLHttpRequest for XMLHttpRequest
util.parseJSON and util.stringifyJSON for JSON
createHttpLongpollJsonpTransport for script.onreadystatechange
head for document.head
util.isArray for Array.isArray
Specific fallbacks for IE 6
Unfortunately, IE 9's XMLHttpRequest is not capable of cross origin operation so there will be no changes in transport factory.
The text was updated successfully, but these errors were encountered:
Cettia JavaScript Client's browser support policy has been the same with the one of jQuery 1.x, and the one of jQuery Compat 3.0 was supposed to replace the one of jQuery 1.x. However, as jQuery team announces the death of jQuery Compat, now the browser support of jQuery 3.0 should be used so we don't need to support IE 6-8. (FYI, I thought it's a waste of time to try to support browsers where jQuery doesn't work)
The following fallback can be dropped:
util.createXMLHttpRequest
forXMLHttpRequest
util.parseJSON
andutil.stringifyJSON
forJSON
createHttpLongpollJsonpTransport
forscript.onreadystatechange
head
fordocument.head
util.isArray
forArray.isArray
Unfortunately, IE 9's XMLHttpRequest is not capable of cross origin operation so there will be no changes in transport factory.
The text was updated successfully, but these errors were encountered: