Added cache: false to ajax calls that caused problems with ie10

Этот коммит содержится в:
Reed Garmsen
2015-08-19 17:41:33 -07:00
родитель 06c5ddcb1d
Коммит c1afc988cb

Просмотреть файл

@@ -282,6 +282,7 @@ module.exports.getMeSynchronous = function(success, error) {
var currentUser = null; var currentUser = null;
$.ajax({ $.ajax({
async: false, async: false,
cache: false,
url: '/api/v1/users/me', url: '/api/v1/users/me',
dataType: 'json', dataType: 'json',
contentType: 'application/json', contentType: 'application/json',
@@ -293,14 +294,11 @@ module.exports.getMeSynchronous = function(success, error) {
} }
}, },
error: function onError(xhr, status, err) { 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) { if (error) {
var e = handleError('getMeSynchronous', xhr, status, err); var e = handleError('getMeSynchronous', xhr, status, err);
error(e); error(e);
} }
} }
}
}); });
return currentUser; return currentUser;