From c1afc988cb25f27366d24527fb70e718b42fff76 Mon Sep 17 00:00:00 2001 From: Reed Garmsen Date: Wed, 19 Aug 2015 17:41:33 -0700 Subject: Added cache: false to ajax calls that caused problems with ie10 --- web/react/utils/client.jsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'web') diff --git a/web/react/utils/client.jsx b/web/react/utils/client.jsx index 103292abf..c947ff075 100644 --- a/web/react/utils/client.jsx +++ b/web/react/utils/client.jsx @@ -282,6 +282,7 @@ module.exports.getMeSynchronous = function(success, error) { var currentUser = null; $.ajax({ async: false, + cache: false, url: '/api/v1/users/me', dataType: 'json', contentType: 'application/json', @@ -293,12 +294,9 @@ module.exports.getMeSynchronous = function(success, error) { } }, error: function onError(xhr, status, err) { - var ieChecker = window.navigator.userAgent; // This and the condition below is used to check specifically for browsers IE10 & 11 to suppress a 200 'OK' error from appearing on login - if (xhr.status !== 200 || !(ieChecker.indexOf('Trident/7.0') > 0 || ieChecker.indexOf('Trident/6.0') > 0)) { - if (error) { - var e = handleError('getMeSynchronous', xhr, status, err); - error(e); - } + if (error) { + var e = handleError('getMeSynchronous', xhr, status, err); + error(e); } } }); -- cgit v1.2.3-1-g7c22