in AzureCT/ServerSide/DisplayAvailability.js [241:269]
$('TraceRecord', xml).each(function (i) {
traceJobID = $(this).find('JobID').text();
traceCallID = $(this).find('CallID').text();
// Pull Job Header info into variables
if (traceJobID == JobID && traceCallID == CallID) {
traceTimeStamp = $(this).find('TimeStamp').text();
traceHopID = $(this).find('HopID').text();
traceAddress = $(this).find('Address').text();
traceTripTime = $(this).find('TripTime').text();
myHTMLOutput += '<tr>';
myHTMLOutput += '<td>' + traceHopID + '</td>';
myHTMLOutput += '<td>' + traceAddress + '</td>';
switch (traceTripTime) {
case '*':
myHTMLOutput += '<td>*</td>';
break;
case '0':
myHTMLOutput += '<td>< 1 ms</td>';
break;
default:
myHTMLOutput += '<td>' + traceTripTime + ' ms</td>';
};
myHTMLOutput += '</tr>';
};
});