Added comment for later reference

Этот коммит содержится в:
Reed Garmsen
2015-07-02 18:02:00 -07:00
родитель e51a0461a6
Коммит 6b1ae67f2f

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

@@ -286,7 +286,7 @@ module.exports.getMeSynchronous = function(success, error) {
if (success) success(data, textStatus, xhr);
},
error: function(xhr, status, err) {
var ieChecker = window.navigator.userAgent;
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) {
e = handleError("getMeSynchronous", xhr, status, err);