xmlHttp.onreadystatechange = function()

in eng/common/docgeneration/templates/matthews/styles/main.js [97:105]


    xmlHttp.onreadystatechange = function () {
        if (xmlHttp.readyState == 4) {
            if (xmlHttp.status == 200) {
                successCallback(xmlHttp.responseText);
            } else {
                failureCallback(xmlHttp.status)
            }
        }
    }