mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-14 21:04:53 +00:00
(js) Prevent 304 HTTP status code in IE11
This commit is contained in:
@@ -468,8 +468,8 @@ function triggerAjaxRequest(url, callback, userdata, content, headers, attempt)
|
||||
activeAjaxRequests++;
|
||||
document.animTimer = setTimeout("checkAjaxRequestsState();", 250);
|
||||
|
||||
if (Prototype.Browser.IE) {
|
||||
// Prevent 304 HTTP status code from the server
|
||||
if (navigator.userAgent.include('Trident')) {
|
||||
// Prevent 304 HTTP status code from the server with IE
|
||||
if (url.indexOf('?') >= 0)
|
||||
url += '&';
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user